summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vcl/unx/gtk/app/gtkinst.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/vcl/unx/gtk/app/gtkinst.cxx b/vcl/unx/gtk/app/gtkinst.cxx
index d31563efe369..41dfbea21d30 100644
--- a/vcl/unx/gtk/app/gtkinst.cxx
+++ b/vcl/unx/gtk/app/gtkinst.cxx
@@ -82,6 +82,12 @@ extern "C"
XInitThreads();
#if GTK_CHECK_VERSION(3,0,0)
+ if (gtk_minor_version < 14)
+ {
+ g_warning("require a newer gtk than 3.%d for theme expectations", gtk_minor_version);
+ return NULL;
+ }
+
const gchar* pVersion = gtk_check_version( 3, 2, 0 );
#else
const gchar* pVersion = gtk_check_version( 2, 2, 0 );