summaryrefslogtreecommitdiff
path: root/gtk2_ardour/floating_text_entry.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-03-05 16:35:16 +0100
committerRobin Gareus <robin@gareus.org>2017-03-05 16:45:55 +0100
commitabdadb090645bf29f3296512473c91656d048302 (patch)
tree80da5f83f49f13b0604e4331a5767488998b9974 /gtk2_ardour/floating_text_entry.h
parentfc47da65114db7dfa9b3e095875afefe501c3d5e (diff)
NO-OP: whitespace
Diffstat (limited to 'gtk2_ardour/floating_text_entry.h')
-rw-r--r--gtk2_ardour/floating_text_entry.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/gtk2_ardour/floating_text_entry.h b/gtk2_ardour/floating_text_entry.h
index 596914c317..764d1fce37 100644
--- a/gtk2_ardour/floating_text_entry.h
+++ b/gtk2_ardour/floating_text_entry.h
@@ -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__