]> git.tdb.fi Git - r2c2.git/blobdiff - source/designer/toolbar.h
Be more permissive when checking route continuity
[r2c2.git] / source / designer / toolbar.h
index 5a2d86c64e2dd5bc59d9a0462b3e915839282b28..49412b6f1ae2a8c22af0c21080c863705aceb62d 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of R²C²
-Copyright © 2010 Mikkosoft Productions, Mikko Rasa
-Distributed under the GPL
-*/
-
 #ifndef TOOLBAR_H_
 #define TOOLBAR_H_
 
@@ -18,21 +11,19 @@ public:
        sigc::signal<void, bool> signal_expanded;
 
 private:
-       unsigned content_width;
        Msp::GLtk::Label *lbl_title;
        Msp::GLtk::Button *btn_expand;
        bool expanded;
 protected:
        Msp::GLtk::Panel *pnl_content;
 
-       Toolbar(const std::string &, unsigned);
+       Toolbar(const std::string &);
 
 public:
        void expand(bool);
 
 private:
        void expand_clicked();
-       virtual void on_style_change();
 };
 
 #endif