win32: remove an unused func operating on GdkColor

https://bugzilla.gnome.org/show_bug.cgi?id=774347
This commit is contained in:
Andrew Chadwick 2016-11-13 06:23:17 +00:00 committed by Matthias Clasen
parent 23354ff6e7
commit 83712a48f4
2 changed files with 0 additions and 9 deletions

View File

@ -178,14 +178,6 @@ static_printf (const gchar *format,
return retval;
}
gchar *
_gdk_win32_color_to_string (const GdkColor *color)
{
return static_printf ("(%.04x,%.04x,%.04x):%.06x",
color->red, color->green,
color->blue, color->pixel);
}
void
_gdk_win32_print_paletteentries (const PALETTEENTRY *pep,
const int nentries)

View File

@ -204,7 +204,6 @@ GdkWindow *_gdk_modal_current (void);
gboolean _gdk_modal_blocked (GdkWindow *window);
#ifdef G_ENABLE_DEBUG
gchar *_gdk_win32_color_to_string (const GdkColor *color);
void _gdk_win32_print_paletteentries (const PALETTEENTRY *pep,
const int nentries);
void _gdk_win32_print_system_palette (void);