app/dialogs/channel-options-dialog.c app/dialogs/palette-import-dialog.c
2008-06-29 Michael Natterer <mitch@gimp.org> * app/dialogs/channel-options-dialog.c * app/dialogs/palette-import-dialog.c * app/display/gimpdisplayshell-callbacks.c * app/display/gimpnavigationeditor.c * app/tools/gimpbrightnesscontrasttool.c * app/tools/gimpcolorbalancetool.c * app/tools/gimpcolorizetool.c * app/tools/gimphuesaturationtool.c * app/tools/gimplevelstool.c * app/tools/gimpposterizetool.c * app/widgets/gimpbrusheditor.c * app/widgets/gimpbrushfactoryview.c * app/widgets/gimpbrushselect.c * app/widgets/gimpcolormapeditor.c * app/widgets/gimpcontainertreeview-dnd.c * app/widgets/gimpgradienteditor.c * app/widgets/gimphistogrambox.c * app/widgets/gimppaletteeditor.c * app/widgets/gimpscalebutton.c: replace adjustment->value by gtk_adjustment_get_value (adjustment). svn path=/trunk/; revision=26019
This commit is contained in:

committed by
Michael Natterer

parent
b829a478ba
commit
6aa62a907b
@ -823,7 +823,8 @@ palette_editor_columns_changed (GtkAdjustment *adj,
|
||||
{
|
||||
GimpPalette *palette = GIMP_PALETTE (GIMP_DATA_EDITOR (editor)->data);
|
||||
|
||||
gimp_palette_set_columns (palette, ROUND (adj->value));
|
||||
gimp_palette_set_columns (palette,
|
||||
ROUND (gtk_adjustment_get_value (adj)));
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user