Remove uses of GSEAL macro to make the thing compile on systems without

2008-06-28  Martin Nordholts  <martinn@svn.gnome.org>

	* app/widgets/gtkscalebutton.h: Remove uses of GSEAL macro to make
	the thing compile on systems without bleeding edge GTK+.

svn path=/trunk/; revision=26014
This commit is contained in:
Martin Nordholts
2008-06-28 19:30:45 +00:00
committed by Martin Nordholts
parent 07197c4880
commit b8aa39d01c
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2008-06-28 Martin Nordholts <martinn@svn.gnome.org>
* app/widgets/gtkscalebutton.h: Remove uses of GSEAL macro to make
the thing compile on systems without bleeding edge GTK+.
2008-06-28 Michael Natterer <mitch@gimp.org>
This is completely evil:

View File

@ -55,11 +55,11 @@ struct _GtkScaleButton
{
GtkButton parent;
GtkWidget *GSEAL (plus_button);
GtkWidget *GSEAL (minus_button);
GtkWidget *plus_button;
GtkWidget *minus_button;
/*< private >*/
GtkScaleButtonPrivate *GSEAL (priv);
GtkScaleButtonPrivate *priv;
};
struct _GtkScaleButtonClass