From: Nicolas Boichat Date: Thu, 15 Apr 2004 23:35:11 +0000 (+0000) Subject: Removed unused local variable. X-Git-Tag: Release-1.34.1~43 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=e767e068a08f52e5fcd1f520fd00d4cdc30dcd54;p=bacula%2Fbacula Removed unused local variable. git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@1210 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/wx-console/wxbtreectrl.cpp b/bacula/src/wx-console/wxbtreectrl.cpp index b22242e406..612c1affdd 100644 --- a/bacula/src/wx-console/wxbtreectrl.cpp +++ b/bacula/src/wx-console/wxbtreectrl.cpp @@ -39,7 +39,6 @@ DEFINE_LOCAL_EVENT_TYPE(wxbTREE_MARKED_EVENT) wxbTreeCtrl::wxbTreeCtrl( wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size): wxTreeCtrl(parent, id, pos, size) { - marked = false; } wxbTreeCtrl::~wxbTreeCtrl() {} diff --git a/bacula/src/wx-console/wxbtreectrl.h b/bacula/src/wx-console/wxbtreectrl.h index 024e473fd8..72b4f802a9 100644 --- a/bacula/src/wx-console/wxbtreectrl.h +++ b/bacula/src/wx-console/wxbtreectrl.h @@ -68,8 +68,6 @@ class wxbTreeCtrl: public wxTreeCtrl { ~wxbTreeCtrl(); private: - bool marked; - void OnDoubleClicked(wxMouseEvent& event); void OnRightClicked(wxMouseEvent& event);