From 93c402846372b6cb532ec07f0563dc26b91596e6 Mon Sep 17 00:00:00 2001
From: fluxgen <fluxgen>
Date: Sun, 20 Jan 2002 02:11:51 +0000
Subject: Fixed redudant include guards and named enum

---
 src/Toolbar.hh | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/src/Toolbar.hh b/src/Toolbar.hh
index bd59a8c..0812fce 100644
--- a/src/Toolbar.hh
+++ b/src/Toolbar.hh
@@ -19,18 +19,24 @@
 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 // DEALINGS IN THE SOFTWARE.
 
+// $Id: Toolbar.hh,v 1.4 2002/01/20 02:11:51 fluxgen Exp $
+
 #ifndef   _TOOLBAR_HH_
 #define   _TOOLBAR_HH_
 
 #include <X11/Xlib.h>
-
-
-
-
+#ifndef _BASEMENU_HH_
 #include "Basemenu.hh"
+#endif
+#ifndef _LINKEDLIST_HH_
 #include "LinkedList.hh"
+#endif
+#ifndef _TIMER_HH_
 #include "Timer.hh"
+#endif
+#ifndef _ICONBAR_HH_
 #include "IconBar.hh"
+#endif
 
 
 // forward declaration
@@ -156,7 +162,7 @@ public:
 
   virtual void timeout(void);
 
-  enum { TOPLEFT = 1, BOTTOMLEFT, TOPCENTER,
+  enum Placement{ TOPLEFT = 1, BOTTOMLEFT, TOPCENTER,
          BOTTOMCENTER, TOPRIGHT, BOTTOMRIGHT };
 };
 
-- 
cgit v0.11.2