removed not impl exception, not very helpful and causes crash on linux (gets called even though drag/drop not enabled).
This commit is contained in:
parent
60263dde77
commit
9c3e9aab09
|
@ -97,9 +97,9 @@ public:
|
|||
virtual void setSequenceNumber(UInt32) = 0;
|
||||
virtual bool isPrimary() const = 0;
|
||||
|
||||
virtual void fakeDraggingFiles(CString str) { throw std::runtime_error("fakeDraggingFiles not implemented"); }
|
||||
virtual void fakeDraggingFiles(CString str) { }
|
||||
virtual const CString&
|
||||
getDropTarget() const { throw std::runtime_error("getDropTarget not implemented"); }
|
||||
getDropTarget() const { }
|
||||
|
||||
protected:
|
||||
//! Update mouse buttons
|
||||
|
|
Loading…
Reference in New Issue