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:

committed by
Manish Singh

parent
e0a4244985
commit
36ed0023da
@ -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
|
||||
|
||||
|
@ -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"
|
||||
|
Reference in New Issue
Block a user