changed to a runtime check for gtk version.

2003-09-14  Manish Singh  <yosh@gimp.org>

        * app/gui/gui.c: changed to a runtime check for gtk version.
This commit is contained in:
Manish Singh
2003-09-14 19:23:18 +00:00
committed by Manish Singh
parent e0a4244985
commit 36ed0023da
2 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,11 @@
2003-09-14 Manish Singh <yosh@gimp.org>
* app/gui/gui.c: changed to a runtime check for gtk version.
2003-09-14 Helvetix Victorinox <helvetix@gimp.org>
* app/composite/gimp-composite-sse2.c (gimp_composite_swap_rgba8_rgba8_rgba8_sse2):
* app/composite/gimp-composite-sse2.c
(gimp_composite_swap_rgba8_rgba8_rgba8_sse2):
Removed clobbered register declaration in an attempt to get this
to compile with gcc 3.2.3

View File

@ -319,7 +319,7 @@ gui_restore (Gimp *gimp,
#ifdef __GNUC__
#warning FIXME: remove this as soon as we depend on GTK+ >= 2.2.2
#endif
if (! GTK_CHECK_VERSION (2, 2, 2))
if (gtk_check_version (2, 2, 2) != NULL)
gimp_message_box (GIMP_STOCK_WILBER_EEK, NULL,
"Please upgrade your GTK+ installation!\n\n"
"The GTK+ version you are using is too old.\n"