]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/wx-console/wxbtreectrl.h
- Implement restore of a single directory.
[bacula/bacula] / bacula / src / wx-console / wxbtreectrl.h
index e1710313a5f2f0d87d86ac86a43a2663c640256a..3cf6012f272bf993fffdd5b4d4f80916adbcbc0b 100644 (file)
@@ -5,6 +5,7 @@
  *
  *    Nicolas Boichat, April 2004
  *
+ *    Version $Id$
  */
 /*
    Copyright (C) 2004 Kern Sibbald and John Walker
@@ -46,7 +47,7 @@ class wxbTreeMarkedEvent: public wxEvent {
       ~wxbTreeMarkedEvent();
       wxbTreeMarkedEvent(const wxbTreeMarkedEvent& te);
       virtual wxEvent *Clone() const;
-      
+
       wxTreeItemId GetItem();
    private:
       wxTreeItemId item;
@@ -56,9 +57,9 @@ typedef void (wxEvtHandler::*wxTreeMarkedEventFunction)(wxbTreeMarkedEvent&);
 
 #define EVT_TREE_MARKED_EVENT(id, fn) \
     DECLARE_EVENT_TABLE_ENTRY( \
-        wxbTREE_MARKED_EVENT, id, wxID_ANY, \
-        (wxObjectEventFunction)(wxEventFunction)(wxTreeMarkedEventFunction)&fn, \
-        (wxObject *) NULL \
+       wxbTREE_MARKED_EVENT, id, wxID_ANY, \
+       (wxObjectEventFunction)(wxEventFunction)(wxTreeMarkedEventFunction)&fn, \
+       (wxObject *) NULL \
     ),
 
 /* Customized tree, which transmit double clicks on images */
@@ -66,15 +67,14 @@ class wxbTreeCtrl: public wxTreeCtrl {
    public:
       wxbTreeCtrl(wxWindow* parent, wxEvtHandler* handler, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize);
       ~wxbTreeCtrl();
-      
+
    private:
       void OnDoubleClicked(wxMouseEvent& event);
       void OnRightClicked(wxMouseEvent& event);
-      
+
       wxEvtHandler* handler;
-      
+
       DECLARE_EVENT_TABLE();
 };
 
 #endif // WXBTREECTRL_H
-