diff options
author | Michael Natterer <mitch@imendio.com> | 2007-04-25 09:47:14 +0000 |
---|---|---|
committer | Michael Natterer <mitch@src.gnome.org> | 2007-04-25 09:47:14 +0000 |
commit | 653a03c218f1a308ba437661fdc56ad91d969a91 (patch) | |
tree | 3bcceb2a29ac517412a3a2653586ad64e66a2c57 /gtk/gtkprintoperation.c | |
parent | 8af6804b7114cbf0c14bbe8af4f2b409e08fe521 (diff) | |
download | gtk+-653a03c218f1a308ba437661fdc56ad91d969a91.tar.gz |
fix the build. Dunno if the fix is right, but I think it is.
2007-04-25 Michael Natterer <mitch@imendio.com>
* gtk/gtkprintoperation.c (preview_iface_is_selected): fix the
build. Dunno if the fix is right, but I think it is.
svn path=/trunk/; revision=17629
Diffstat (limited to 'gtk/gtkprintoperation.c')
-rw-r--r-- | gtk/gtkprintoperation.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkprintoperation.c b/gtk/gtkprintoperation.c index e1189d762f..d40465b04b 100644 --- a/gtk/gtkprintoperation.c +++ b/gtk/gtkprintoperation.c @@ -214,7 +214,7 @@ preview_iface_is_selected (GtkPrintOperationPreview *preview, for (i = 0; i < priv->num_page_ranges; i++) { if (page_nr >= priv->page_ranges[i].start && - (page_nr <= priv->page_ranges[i].end || page_ranges[i].end == -1) + (page_nr <= priv->page_ranges[i].end || priv->page_ranges[i].end == -1)) return TRUE; } return FALSE; |