added GTK_DISABLE_COMPAT_H back to CPPFLAGS.
2001-08-01 Sven Neumann <sven@gimp.org> * configure.in: added GTK_DISABLE_COMPAT_H back to CPPFLAGS. * app/user_install.c * app/base/base.c * app/gui/info-window.c * app/gui/menus.c * app/gui/preferences-dialog.c * app/pdb/procedural_db_cmds.c * app/tools/gimpcurvestool.c * app/tools/gimptexttool.c * app/tools/gimptransformtool.c * app/widgets/gimpdialogfactory.c * app/widgets/gimpdockbook.c * app/widgets/gimpdrawablelistview.c * app/widgets/gimpnavigationpreview.c * libgimpbase/gimpparasiteio.c * libgimpwidgets/gimpwidgets.c * plug-ins/FractalExplorer/Dialogs.c * plug-ins/common/animationplay.c * plug-ins/common/newsprint.c * plug-ins/common/uniteditor.c * plug-ins/dbbrowser/dbbrowser_utils.c * plug-ins/gap/gap_navigator_dialog.c * plug-ins/gdyntext/gdyntext_ui.c * plug-ins/helpbrowser/helpbrowser.c * plug-ins/ifscompose/ifscompose_storage.c * plug-ins/print/gimp_main_window.c * tools/gimp-remote.c * tools/pdbgen/pdb/procedural_db.pdb: replaced lots of deprecated glib, gdk and gtk+ functions using the new API. * app/paint-funcs/paint-funcs-rgb.c: removed trailing commas.
This commit is contained in:
committed by
Sven Neumann
parent
34e395dff9
commit
b2c676bd74
@ -338,7 +338,7 @@ gimp_radio_group_new (gboolean in_frame,
|
||||
else
|
||||
button = gtk_radio_button_new (group);
|
||||
|
||||
group = gtk_radio_button_group (GTK_RADIO_BUTTON (button));
|
||||
group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (button));
|
||||
gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 0);
|
||||
|
||||
if (user_data)
|
||||
@ -436,7 +436,7 @@ gimp_radio_group_new2 (gboolean in_frame,
|
||||
else
|
||||
button = gtk_radio_button_new (group);
|
||||
|
||||
group = gtk_radio_button_group (GTK_RADIO_BUTTON (button));
|
||||
group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (button));
|
||||
gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 0);
|
||||
|
||||
if (user_data)
|
||||
|
||||
Reference in New Issue
Block a user