aboutsummaryrefslogtreecommitdiff
path: root/src/GenericTool.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-10-26 20:11:27 (GMT)
committerfluxgen <fluxgen>2003-10-26 20:11:27 (GMT)
commitbe807760d03827e4c61621b958568d69aa3dcf21 (patch)
treee65ea641fa982fc02b5b953bc6151df9d6ee7bda /src/GenericTool.cc
parent35b2305b62e106e5b0ca38200a50064287da99aa (diff)
downloadfluxbox-be807760d03827e4c61621b958568d69aa3dcf21.zip
fluxbox-be807760d03827e4c61621b958568d69aa3dcf21.tar.bz2
minor compile fix
Diffstat (limited to 'src/GenericTool.cc')
-rw-r--r--src/GenericTool.cc6
1 files changed, 5 insertions, 1 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 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: GenericTool.cc,v 1.1 2003/10/13 23:35:54 fluxgen Exp $ 22// $Id: GenericTool.cc,v 1.2 2003/10/26 20:11:27 fluxgen Exp $
23 23
24#include "GenericTool.hh" 24#include "GenericTool.hh"
25#include "FbTk/FbWindow.hh" 25#include "FbTk/FbWindow.hh"
@@ -38,6 +38,10 @@ GenericTool::GenericTool(FbTk::FbWindow *new_window, ToolbarItem::Type type,
38 throw std::string("GenericTool: Error! Tried to create a tool with window = 0"); 38 throw std::string("GenericTool: Error! Tried to create a tool with window = 0");
39} 39}
40 40
41GenericTool::~GenericTool() {
42
43}
44
41void GenericTool::move(int x, int y) { 45void GenericTool::move(int x, int y) {
42 m_window->move(x, y); 46 m_window->move(x, y);
43} 47}