[gimp/gtk3-port: 122/247] plug-ins: s/GtkObject/GtkAdjustment/ in file-pdf-load
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/gtk3-port: 122/247] plug-ins: s/GtkObject/GtkAdjustment/ in file-pdf-load
- Date: Sat, 5 Mar 2011 20:42:26 +0000 (UTC)
commit 6f423955feeb390a6584a8f495c331b245c9a80a
Author: Michael Natterer <mitch gimp org>
Date: Sun Oct 31 21:50:28 2010 +0100
plug-ins: s/GtkObject/GtkAdjustment/ in file-pdf-load
plug-ins/common/file-pdf-load.c | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
---
diff --git a/plug-ins/common/file-pdf-load.c b/plug-ins/common/file-pdf-load.c
index 41f4cc7..4de68a3 100644
--- a/plug-ins/common/file-pdf-load.c
+++ b/plug-ins/common/file-pdf-load.c
@@ -121,7 +121,7 @@ struct _GimpResolutionEntryField
guint changed_signal;
- GtkObject *adjustment;
+ GtkAdjustment *adjustment;
GtkWidget *spinbutton;
gdouble phy_size;
@@ -1361,7 +1361,7 @@ gimp_resolution_entry_update_value (GimpResolutionEntryField *gref,
factor);
}
- gtk_adjustment_set_value (GTK_ADJUSTMENT (gref->adjustment), value);
+ gtk_adjustment_set_value (gref->adjustment, value);
gref->stop_recursion--;
@@ -1404,8 +1404,7 @@ gimp_resolution_entry_update_unit (GimpResolutionEntry *gre,
gre->x.max_value *= factor;
gre->x.value *= factor;
- gtk_adjustment_set_value (GTK_ADJUSTMENT (gre->x.adjustment),
- gre->x.value);
+ gtk_adjustment_set_value (gre->x.adjustment, gre->x.value);
gimp_resolution_entry_format_label (gre,
gre->width.label, gre->width.phy_size);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]