13
0

NO-OP whitespace

This commit is contained in:
Robin Gareus 2017-03-11 00:36:47 +01:00
parent 41216d200a
commit 0b966460a5

View File

@ -100,20 +100,20 @@ struct LIBGTKMM2EXT_API UIRequest : public BaseUI::BaseRequestObject {
class LIBGTKMM2EXT_API UI : public AbstractUI<UIRequest> class LIBGTKMM2EXT_API UI : public AbstractUI<UIRequest>
{ {
private: private:
class MyReceiver : public Receiver { class MyReceiver : public Receiver {
public: public:
MyReceiver (UI& ui) : _ui (ui) {} MyReceiver (UI& ui) : _ui (ui) {}
void receive (Transmitter::Channel chn, const char *msg) { void receive (Transmitter::Channel chn, const char *msg) {
_ui.receive (chn, msg); _ui.receive (chn, msg);
} }
private: private:
UI& _ui; UI& _ui;
}; };
MyReceiver _receiver; MyReceiver _receiver;
public: public:
UI (std::string, std::string, int *argc, char **argv[]); UI (std::string, std::string, int *argc, char **argv[]);
virtual ~UI (); virtual ~UI ();
@ -159,10 +159,9 @@ class LIBGTKMM2EXT_API UI : public AbstractUI<UIRequest>
/* starting is sent just before we enter the main loop, /* starting is sent just before we enter the main loop,
stopping just after we return from it (at the top level) * stopping just after we return from it (at the top level)
*/ */
virtual int starting() = 0;
virtual int starting() = 0;
sigc::signal<void> theme_changed; sigc::signal<void> theme_changed;
@ -171,13 +170,13 @@ class LIBGTKMM2EXT_API UI : public AbstractUI<UIRequest>
Gtkmm2ext::Bindings* global_bindings; Gtkmm2ext::Bindings* global_bindings;
protected: protected:
virtual void handle_fatal (const char *); virtual void handle_fatal (const char *);
virtual void display_message (const char *prefix, gint prefix_len, virtual void display_message (const char *prefix, gint prefix_len,
Glib::RefPtr<Gtk::TextBuffer::Tag> ptag, Glib::RefPtr<Gtk::TextBuffer::Tag> mtag, Glib::RefPtr<Gtk::TextBuffer::Tag> ptag, Glib::RefPtr<Gtk::TextBuffer::Tag> mtag,
const char *msg); const char *msg);
private: private:
static UI *theGtkUI; static UI *theGtkUI;
bool _active; bool _active;