win32: Remove unused functions / header includes

This commit is contained in:
Benjamin Otte 2016-02-08 02:26:07 +01:00 committed by Benjamin Otte
parent 033fb5a879
commit a620a1d688
5 changed files with 0 additions and 19 deletions

View File

@ -32,7 +32,6 @@
#include "gtkstylepropertyprivate.h"
#include "gtkstyleproviderprivate.h"
#include "gtkintl.h"
#include "gtkwin32themeprivate.h"
#include "deprecated/gtkthemingengine.h"
#include "deprecated/gtkgradient.h"

View File

@ -61,7 +61,6 @@
#include "gtkcssstringvalueprivate.h"
#include "gtkcsstransformvalueprivate.h"
#include "gtktypebuiltins.h"
#include "gtkwin32themeprivate.h"
#include "deprecated/gtkthemingengine.h"

View File

@ -56,10 +56,6 @@
#include "win32/gdkwin32.h"
#endif
#ifdef G_OS_WIN32
#include "gtkwin32themeprivate.h"
#endif
#include "deprecated/gtkrc.h"
#ifdef GDK_WINDOWING_QUARTZ

View File

@ -410,15 +410,3 @@ _gtk_win32_theme_color_resolve (const char *theme_class,
return TRUE;
}
const char *
_gtk_win32_theme_get_default (void)
{
#ifdef G_OS_WIN32
_gtk_win32_theme_init ();
if (use_xp_theme)
return (os_version.dwMajorVersion >= 6) ? "gtk-win32" : "gtk-win32-xp";
#endif
return "gtk-win32-classic";
}

View File

@ -53,7 +53,6 @@ int _gtk_win32_theme_int_parse (GtkCssParser *parser,
gboolean _gtk_win32_theme_color_resolve (const char *theme_class,
gint id,
GdkRGBA *color);
const char * _gtk_win32_theme_get_default (void);
G_END_DECLS