fixed: drag and drop crashes windows - reintroduced empty function to stop not impl exception.
This commit is contained in:
parent
2d0d0010d7
commit
88a84b6f04
|
@ -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()
|
||||
{
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue