mirror of https://github.com/GNOME/gimp.git
app: rename gimp_brush_start_use() to gimp_brush_begin_use()
This commit is contained in:
parent
7ace5f9571
commit
391c74899c
|
@ -304,7 +304,7 @@ gimp_brush_get_new_preview (GimpViewable *viewable,
|
|||
|
||||
if (scale != 1.0)
|
||||
{
|
||||
gimp_brush_start_use (brush);
|
||||
gimp_brush_begin_use (brush);
|
||||
|
||||
mask_buf = gimp_brush_transform_mask (brush, scale,
|
||||
0.0, 0.0, 1.0);
|
||||
|
@ -738,7 +738,7 @@ gimp_brush_set_spacing (GimpBrush *brush,
|
|||
}
|
||||
|
||||
void
|
||||
gimp_brush_start_use (GimpBrush *brush)
|
||||
gimp_brush_begin_use (GimpBrush *brush)
|
||||
{
|
||||
g_return_if_fail (GIMP_IS_BRUSH (brush));
|
||||
|
||||
|
|
|
@ -140,7 +140,7 @@ gint gimp_brush_get_spacing (const GimpBrush *brush);
|
|||
void gimp_brush_set_spacing (GimpBrush *brush,
|
||||
gint spacing);
|
||||
|
||||
void gimp_brush_start_use (GimpBrush *brush);
|
||||
void gimp_brush_begin_use (GimpBrush *brush);
|
||||
void gimp_brush_end_use (GimpBrush *brush);
|
||||
|
||||
|
||||
|
|
|
@ -855,7 +855,7 @@ gimp_brush_core_real_set_brush (GimpBrushCore *core,
|
|||
if (core->main_brush)
|
||||
{
|
||||
g_object_ref (core->main_brush);
|
||||
gimp_brush_start_use (core->main_brush);
|
||||
gimp_brush_begin_use (core->main_brush);
|
||||
g_signal_connect (core->main_brush, "invalidate-preview",
|
||||
G_CALLBACK (gimp_brush_core_invalidate_cache),
|
||||
core);
|
||||
|
|
Loading…
Reference in New Issue