app/core/gimpcurve-load.c (gimp_curve_load) Remove unused variables.

2008-05-22  Martin Nordholts  <martinn@svn.gnome.org>

	* app/core/gimpcurve-load.c (gimp_curve_load)
	* app/paint/gimppaintbrush.c (_gimp_paintbrush_motion): Remove
	unused variables.

svn path=/trunk/; revision=25760
This commit is contained in:
Martin Nordholts 2008-05-22 17:00:24 +00:00 committed by Martin Nordholts
parent cb13929f5c
commit 74e037bf80
3 changed files with 9 additions and 6 deletions

View File

@ -1,3 +1,9 @@
2008-05-22 Martin Nordholts <martinn@svn.gnome.org>
* app/core/gimpcurve-load.c (gimp_curve_load)
* app/paint/gimppaintbrush.c (_gimp_paintbrush_motion): Remove
unused variables.
2008-05-22 Martin Nordholts <martinn@svn.gnome.org>
* app/tools/gimpfreeselecttool.[ch]

View File

@ -41,8 +41,7 @@ GList *
gimp_curve_load (const gchar *filename,
GError **error)
{
GimpCurve *curve;
FILE *file;
FILE *file;
g_return_val_if_fail (filename != NULL, NULL);
g_return_val_if_fail (g_path_is_absolute (filename), NULL);

View File

@ -105,10 +105,8 @@ _gimp_paintbrush_motion (GimpPaintCore *paint_core,
GimpPaintOptions *paint_options,
gdouble opacity)
{
GimpBrushCore *brush_core = GIMP_BRUSH_CORE (paint_core);
GimpContext *context = GIMP_CONTEXT (paint_options);
GimpPressureOptions *pressure_options = paint_options->pressure_options;
GimpVelocityOptions *velocity_options = paint_options->velocity_options;
GimpBrushCore *brush_core = GIMP_BRUSH_CORE (paint_core);
GimpContext *context = GIMP_CONTEXT (paint_options);
GimpImage *image;
GimpRGB gradient_color;
TempBuf *area;