removed unused variable.

2005-12-20  Sven Neumann  <sven@gimp.org>

	* libgimpwidgets/gimpscrolledpreview.c: removed unused variable.
This commit is contained in:
Sven Neumann 2005-12-20 09:18:09 +00:00 committed by Sven Neumann
parent 5a8b082a8e
commit a4c54f7aa8
2 changed files with 8 additions and 5 deletions

View File

@ -1,3 +1,7 @@
2005-12-20 Sven Neumann <sven@gimp.org>
* libgimpwidgets/gimpscrolledpreview.c: removed unused variable.
2005-12-19 Michael Natterer <mitch@gimp.org>
* app/widgets/*.c: port to G_DEFINE_TYPE() and friends. Some

View File

@ -664,11 +664,10 @@ gimp_scrolled_preview_nav_popup_event (GtkWidget *widget,
case GDK_MOTION_NOTIFY:
{
GdkEventMotion *motion_event = (GdkEventMotion *) event;
GtkAdjustment *hadj;
GtkAdjustment *vadj;
gint cx, cy;
gdouble x, y;
GtkAdjustment *hadj;
GtkAdjustment *vadj;
gint cx, cy;
gdouble x, y;
hadj = gtk_range_get_adjustment (GTK_RANGE (preview->hscr));
vadj = gtk_range_get_adjustment (GTK_RANGE (preview->vscr));