NO-OP: whitespace
authorRobin Gareus <robin@gareus.org>
Sun, 5 Mar 2017 15:35:16 +0000 (16:35 +0100)
committerRobin Gareus <robin@gareus.org>
Sun, 5 Mar 2017 15:45:55 +0000 (16:45 +0100)
gtk2_ardour/floating_text_entry.h

index 596914c317ae9e810852ca61588478573326a64f..764d1fce3764c7e3c554a2b4c4bd386515fe96de 100644 (file)
@@ -25,7 +25,7 @@
 
 class FloatingTextEntry : public Gtk::Window
 {
-  public:
+public:
        FloatingTextEntry (Gtk::Window* parent, const std::string& initial_contents);
 
        /* 1st argument to handler is the new text
@@ -36,24 +36,24 @@ class FloatingTextEntry : public Gtk::Window
         */
        sigc::signal2<void,std::string,int> use_text;
 
-  private:
-        Gtk::Entry entry;
-        bool entry_changed;
+private:
+       Gtk::Entry entry;
+       bool entry_changed;
        bool by_popup_menu;
 
-        /* handlers for Entry events */
+       /* handlers for Entry events */
        bool entry_focus_out (GdkEventFocus*);
-        bool key_press (GdkEventKey*);
-        bool key_release (GdkEventKey*);
-        void activated ();
-        bool button_press (GdkEventButton*);
-        void changed ();
+       bool key_press (GdkEventKey*);
+       bool key_release (GdkEventKey*);
+       void activated ();
+       bool button_press (GdkEventButton*);
+       void changed ();
        void populate_popup (Gtk::Menu*);
 
-        /* handlers for window events */
+       /* handlers for window events */
 
-        void on_realize ();
-        void on_hide ();
+       void on_realize ();
+       void on_hide ();
 };
 
 #endif // __ardour_window_h__