Remove stray semicolons

This commit is contained in:
Mikael Magnusson 2012-08-14 15:36:23 +02:00
parent 213387c190
commit f6f22ed431
7 changed files with 8 additions and 8 deletions

View File

@ -2134,7 +2134,7 @@ gimp_item_mask_bounds (GimpItem *item,
if (x2) *x2 = tmp_x2;
if (y2) *y2 = tmp_y2;
return retval;;
return retval;
}
gboolean

View File

@ -249,7 +249,7 @@ stroke_dialog_response (GtkWidget *widget,
item = g_object_get_data (G_OBJECT (dialog), "gimp-item");
options = g_object_get_data (G_OBJECT (dialog), "gimp-stroke-options");
combo = g_object_get_data (G_OBJECT (dialog), "gimp-tool-menu");;
combo = g_object_get_data (G_OBJECT (dialog), "gimp-tool-menu");
image = gimp_item_get_image (item);
context = GIMP_VIEWABLE_DIALOG (dialog)->context;

View File

@ -57,7 +57,7 @@ struct _GimpCanvasArcPrivate
gdouble radius_x;
gdouble radius_y;
gdouble start_angle;
gdouble slice_angle;;
gdouble slice_angle;
gboolean filled;
};

View File

@ -61,7 +61,7 @@ struct _GimpCanvasHandlePrivate
gint width;
gint height;
gdouble start_angle;
gdouble slice_angle;;
gdouble slice_angle;
};
#define GET_PRIVATE(handle) \

View File

@ -61,7 +61,7 @@ gimp_plug_in_progress_attach (GimpProgress *progress)
attach_count++;
g_object_set_data (G_OBJECT (progress), "plug-in-progress-attach-count",
GINT_TO_POINTER (attach_count));;
GINT_TO_POINTER (attach_count));
return attach_count;
}
@ -80,7 +80,7 @@ gimp_plug_in_progress_detach (GimpProgress *progress)
attach_count--;
g_object_set_data (G_OBJECT (progress), "plug-in-progress-attach-count",
GINT_TO_POINTER (attach_count));;
GINT_TO_POINTER (attach_count));
return attach_count;
}

View File

@ -397,7 +397,7 @@ iterate (control_point *cp,
tcos = cos (theta);
r2 = sqrt (tx * tx + ty * ty);
r2 = pow (r2, tsin);
nx = r2 * tcos;;
nx = r2 * tcos;
ny = r2 * tsin;
p[0] += v * nx;
p[1] += v * ny;

View File

@ -594,7 +594,7 @@ create_orientmap_dialog (GtkWidget *parent)
gtk_widget_show (tmpw);
tmpw = orient_map_preview_prev = gimp_preview_area_new ();
gtk_widget_set_size_request (tmpw, OMWIDTH, OMHEIGHT);;
gtk_widget_set_size_request (tmpw, OMWIDTH, OMHEIGHT);
gtk_container_add (GTK_CONTAINER (tmpw2), tmpw);
gtk_widget_show (tmpw);