From: Paul Cornett Date: Sun, 26 Aug 2007 16:17:37 +0000 (+0000) Subject: remove gtk_window_set_type_hint from GetTooltipColors, it's not necessary and GDK_WIN... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/69562a1d4c4c8d96116af3f229fa2269828c4489?ds=inline remove gtk_window_set_type_hint from GetTooltipColors, it's not necessary and GDK_WINDOW_TYPE_HINT_TOOLTIP is not available before GTK 2.10 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48403 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk/settings.cpp b/src/gtk/settings.cpp index 16fccb1895..60b1e29cd8 100644 --- a/src/gtk/settings.cpp +++ b/src/gtk/settings.cpp @@ -134,10 +134,6 @@ static bool GetColourFromGTKWidget(GdkColor& gdkColor, static void GetTooltipColors() { GtkWidget* widget = gtk_window_new(GTK_WINDOW_POPUP); -#if GTK_CHECK_VERSION(2, 10, 0) - if (!gtk_check_version(2, 10, 0)) - gtk_window_set_type_hint((GtkWindow*)widget, GDK_WINDOW_TYPE_HINT_TOOLTIP); -#endif const char* name = "gtk-tooltip"; if (gtk_check_version(2, 11, 0)) name = "gtk-tooltips";