We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 531ecdf commit aa695e5Copy full SHA for aa695e5
gtk/pq2gtk.cpp
@@ -10,6 +10,8 @@
10
#include "charactercreator.hpp"
11
#include "gamescreen.hpp"
12
13
+Glib::RefPtr<Gtk::Application> app;
14
+
15
GTKGUI::GTKGUI(const std::shared_ptr<Game> &game) : GUI(game) {
16
message_handler = [this](const std::string &message) {
17
HandleMessage(message);
gtk/pq2gtk.hpp
@@ -6,15 +6,13 @@
6
7
#include <memory>
8
#include <string>
9
-#include <gtkmm/application.h>
#include "pq2gui.hpp"
#include "game.hpp"
class GTKGUI final : public GUI {
private:
MessageHandler message_handler;
- Glib::RefPtr<Gtk::Application> app;
18
19
void HandleMessage(const std::string& message);
20
0 commit comments