summaryrefslogtreecommitdiff
path: root/ui/mouse_move_dlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/mouse_move_dlg.h')
-rw-r--r--ui/mouse_move_dlg.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/ui/mouse_move_dlg.h b/ui/mouse_move_dlg.h
index c7d07629..ccdf6c01 100644
--- a/ui/mouse_move_dlg.h
+++ b/ui/mouse_move_dlg.h
@@ -1,7 +1,7 @@
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
-// * Copyright (C) 2008-2010 ZenJu (zhnmju123 AT gmx.de) *
+// * Copyright (C) 2008-2011 ZenJu (zhnmju123 AT gmx.de) *
// **************************************************************************
//
#ifndef MOUSEMOVEWINDOW_H_INCLUDED
@@ -24,11 +24,16 @@ public:
wxWindow* child5 = NULL,
wxWindow* child6 = NULL);
+ virtual ~MouseMoveWindow();
+
+ virtual bool allowMove(const wxMouseEvent& event)
+ {
+ return true;
+ }
+
private:
void LeftButtonDown(wxMouseEvent& event);
};
-
-
}
bgstack15