summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-03-11 00:36:47 +0100
committerRobin Gareus <robin@gareus.org>2017-03-11 00:36:47 +0100
commit0b966460a5d5abd2284d1b159e49922e22d8c5be (patch)
treed5abafad9825cdc335cd9555a0c3d1c51db8fa49 /libs
parent41216d200a8ea30c14a5b7dd133088a658a6f4f9 (diff)
NO-OP whitespace
Diffstat (limited to 'libs')
-rw-r--r--libs/gtkmm2ext/gtkmm2ext/gtk_ui.h29
1 files changed, 14 insertions, 15 deletions
diff --git a/libs/gtkmm2ext/gtkmm2ext/gtk_ui.h b/libs/gtkmm2ext/gtkmm2ext/gtk_ui.h
index 55cb7e415d..6a66d0f302 100644
--- a/libs/gtkmm2ext/gtkmm2ext/gtk_ui.h
+++ b/libs/gtkmm2ext/gtkmm2ext/gtk_ui.h
@@ -100,20 +100,20 @@ struct LIBGTKMM2EXT_API UIRequest : public BaseUI::BaseRequestObject {
class LIBGTKMM2EXT_API UI : public AbstractUI<UIRequest>
{
- private:
+private:
class MyReceiver : public Receiver {
- public:
- MyReceiver (UI& ui) : _ui (ui) {}
- void receive (Transmitter::Channel chn, const char *msg) {
- _ui.receive (chn, msg);
- }
- private:
- UI& _ui;
+ public:
+ MyReceiver (UI& ui) : _ui (ui) {}
+ void receive (Transmitter::Channel chn, const char *msg) {
+ _ui.receive (chn, msg);
+ }
+ private:
+ UI& _ui;
};
MyReceiver _receiver;
- public:
+public:
UI (std::string, std::string, int *argc, char **argv[]);
virtual ~UI ();
@@ -159,10 +159,9 @@ class LIBGTKMM2EXT_API UI : public AbstractUI<UIRequest>
/* starting is sent just before we enter the main loop,
- stopping just after we return from it (at the top level)
- */
-
- virtual int starting() = 0;
+ * stopping just after we return from it (at the top level)
+ */
+ virtual int starting() = 0;
sigc::signal<void> theme_changed;
@@ -171,13 +170,13 @@ class LIBGTKMM2EXT_API UI : public AbstractUI<UIRequest>
Gtkmm2ext::Bindings* global_bindings;
- protected:
+protected:
virtual void handle_fatal (const char *);
virtual void display_message (const char *prefix, gint prefix_len,
Glib::RefPtr<Gtk::TextBuffer::Tag> ptag, Glib::RefPtr<Gtk::TextBuffer::Tag> mtag,
const char *msg);
- private:
+private:
static UI *theGtkUI;
bool _active;