Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Ollier <larchunix@users.noreply.github.com>2018-04-14 23:39:57 +0300
committerlarchunix <larchunix@users.noreply.github.com>2018-04-15 13:30:09 +0300
commit8a443bd272ea565135624c10261894bb0ffca676 (patch)
tree089c79c00c501ce3a365839bd92a0ed9736bb3ea /plugins/tool_hello_world/plugin.c
parent6233f931a5208a76ef896c1f81d1c04f135b3b4f (diff)
Remove checks for GTK >= 3 since GTK2 is not supported anymore
Diffstat (limited to 'plugins/tool_hello_world/plugin.c')
-rw-r--r--plugins/tool_hello_world/plugin.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/tool_hello_world/plugin.c b/plugins/tool_hello_world/plugin.c
index e29d19cb3..321894fa1 100644
--- a/plugins/tool_hello_world/plugin.c
+++ b/plugins/tool_hello_world/plugin.c
@@ -38,10 +38,8 @@
#include "common/remmina_plugin.h"
-#if GTK_VERSION == 3
-# include <gtk/gtkx.h>
-# include <gdk/gdkx.h>
-#endif
+#include <gtk/gtkx.h>
+#include <gdk/gdkx.h>
static RemminaPluginService *remmina_plugin_service = NULL;