fixed: drag and drop crashes windows - reintroduced empty function to stop not impl exception.

This commit is contained in:
Nick Bolton 2014-02-07 14:23:17 +00:00
parent 2d0d0010d7
commit 88a84b6f04
2 changed files with 8 additions and 0 deletions

View File

@ -1888,6 +1888,13 @@ CMSWindowsScreen::CHotKeyItem::operator<(const CHotKeyItem& x) const
(m_keycode == x.m_keycode && m_mask < x.m_mask));
}
void
CMSWindowsScreen::fakeDraggingFiles(CString str)
{
// possible design flaw: this function stops a "not implemented"
// exception from being thrown.
}
CString&
CMSWindowsScreen::getDraggingFileDir()
{

View File

@ -115,6 +115,7 @@ public:
virtual void setOptions(const COptionsList& options);
virtual void setSequenceNumber(UInt32);
virtual bool isPrimary() const;
virtual void fakeDraggingFiles(CString str);
virtual CString& getDraggingFileDir();
virtual const CString&
getDropTarget() const;