X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dd398cd02c028d42a247d567d254d06604b75678..2ad50cc75b44bdb79c3c1a031e1a548d0fa5bfb9:/include/wx/gtk/private.h diff --git a/include/wx/gtk/private.h b/include/wx/gtk/private.h index 877dd4b561..621852a75d 100644 --- a/include/wx/gtk/private.h +++ b/include/wx/gtk/private.h @@ -61,20 +61,6 @@ #define TOGGLE_BUTTON_EVENT_WIN(w) GTK_TOGGLE_BUTTON((w))->event_window #endif -// get the font from a style -// -// TODO: GdkFont has been replaced by PangoFontDescription in GTK+ 2.0 -// and we really should use it instead of GdkFont (see also dclient.cpp) -#ifdef __WXGTK20__ - #define GET_STYLE_FONT(style) gtk_style_get_font(style) - #define SET_STYLE_FONT(style, font) gtk_style_set_font(style, font) -#else - #define GET_STYLE_FONT(style) ((style)->font) - #define SET_STYLE_FONT(style, fnt) \ - gdk_font_unref( style->font ); \ - style->font = gdk_font_ref( fnt ) -#endif - // gtk_editable_{copy|cut|paste}_clipboard() had an extra argument under // previous GTK+ versions but no more #if defined(__WXGTK20__) || (GTK_MINOR_VERSION > 0)