diff options
author | Hans Breuer <hans@breuer.org> | 2008-06-20 20:39:22 +0000 |
---|---|---|
committer | Hans Breuer <hans@src.gnome.org> | 2008-06-20 20:39:22 +0000 |
commit | 8e2ef4982b50bebf9874504ce1782809c994aa91 (patch) | |
tree | 275986d1f7db2bf0c73aef7b85d947a1664a849b /gdk | |
parent | 2e75eb1330c144cfde8e81b9510953d2e5a76384 (diff) | |
download | gtk+-8e2ef4982b50bebf9874504ce1782809c994aa91.tar.gz |
must return a value of the appropriate type with g_return_val_if_fail
2008-06-20 Hans Breuer <hans@breuer.org>
* gtk/gtkmenuitem.c gtk/gtkmessagedialog.c gtk/gtkplug.c : must return
a value of the appropriate type with g_return_val_if_fail
* gdk/gdkconfig.h.win32 : add the GSEAL definition here as well
* gtk/gtkfilesystem.c : don't add the "File System" on win32
* tests/makefile.msc : remove broken autotestfile(system|chooser)
from build
svn path=/trunk/; revision=20657
Diffstat (limited to 'gdk')
-rw-r--r-- | gdk/gdkconfig.h.win32 | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gdk/gdkconfig.h.win32 b/gdk/gdkconfig.h.win32 index 1258a460dd..7bd668e81e 100644 --- a/gdk/gdkconfig.h.win32 +++ b/gdk/gdkconfig.h.win32 @@ -10,6 +10,14 @@ extern "C" { #endif /* __cplusplus */ +#ifndef GSEAL +/* introduce GSEAL() here for all of Gdk and Gtk+ without the need to modify GLib */ +# ifdef GSEAL_ENABLE +# define GSEAL(ident) _g_sealed__ ## ident +# else +# define GSEAL(ident) ident +# endif +#endif /* !GSEAL */ #define GDK_WINDOWING_WIN32 |