From be807760d03827e4c61621b958568d69aa3dcf21 Mon Sep 17 00:00:00 2001
From: fluxgen <fluxgen>
Date: Sun, 26 Oct 2003 20:11:27 +0000
Subject: minor compile fix

---
 src/GenericTool.cc | 6 +++++-
 src/GenericTool.hh | 4 ++--
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/src/GenericTool.cc b/src/GenericTool.cc
index aaea626..0dcdf4c 100644
--- a/src/GenericTool.cc
+++ b/src/GenericTool.cc
@@ -19,7 +19,7 @@
 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 // DEALINGS IN THE SOFTWARE.
 
-// $Id: GenericTool.cc,v 1.1 2003/10/13 23:35:54 fluxgen Exp $
+// $Id: GenericTool.cc,v 1.2 2003/10/26 20:11:27 fluxgen Exp $
 
 #include "GenericTool.hh"
 #include "FbTk/FbWindow.hh"
@@ -38,6 +38,10 @@ GenericTool::GenericTool(FbTk::FbWindow *new_window, ToolbarItem::Type type,
         throw std::string("GenericTool: Error! Tried to create a tool with window = 0");
 }
 
+GenericTool::~GenericTool() {
+
+}
+
 void GenericTool::move(int x, int y) {
     m_window->move(x, y);
 }
diff --git a/src/GenericTool.hh b/src/GenericTool.hh
index 5ad429c..75aad16 100644
--- a/src/GenericTool.hh
+++ b/src/GenericTool.hh
@@ -19,7 +19,7 @@
 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 // DEALINGS IN THE SOFTWARE.
 
-// $Id: GenericTool.hh,v 1.1 2003/10/13 23:35:53 fluxgen Exp $
+// $Id: GenericTool.hh,v 1.2 2003/10/26 20:11:27 fluxgen Exp $
 
 #ifndef GENERICTOOL_HH
 #define GENERICTOOL_HH
@@ -40,7 +40,7 @@ class FbWindow;
 class GenericTool: public ToolbarItem, public FbTk::Observer, private FbTk::NotCopyable {
 public:
     GenericTool(FbTk::FbWindow *new_window, ToolbarItem::Type type, ToolTheme &theme);
-    virtual ~GenericTool() { }
+    virtual ~GenericTool();
     void move(int x, int y);
     void resize(unsigned int x, unsigned int y);
     void moveResize(int x, int y,
-- 
cgit v0.11.2