app: clean out unused functions.
This commit is contained in:
parent
40845e1961
commit
e41776ef39
1 changed files with 0 additions and 25 deletions
|
|
@ -42,11 +42,6 @@ static void gimp_display_bounds_changed_handler (GimpImage *image,
|
|||
gint old_x,
|
||||
gint old_y,
|
||||
GimpDisplay *display);
|
||||
static void gimp_display_flush_handler (GimpImage *image,
|
||||
gboolean invalidate_preview,
|
||||
GimpDisplay *display);
|
||||
static gboolean
|
||||
gimp_display_flush_handler_idle (gpointer user_data);
|
||||
|
||||
|
||||
/* public functions */
|
||||
|
|
@ -123,23 +118,3 @@ gimp_display_bounds_changed_handler (GimpImage *image,
|
|||
{
|
||||
gimp_display_update_bounding_box (display);
|
||||
}
|
||||
|
||||
static void
|
||||
gimp_display_flush_handler (GimpImage *image,
|
||||
gboolean invalidate_preview,
|
||||
GimpDisplay *display)
|
||||
{
|
||||
g_idle_add_full (G_PRIORITY_LOW,
|
||||
(GSourceFunc) gimp_display_flush_handler_idle,
|
||||
g_object_ref (display), g_object_unref);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
gimp_display_flush_handler_idle (gpointer user_data)
|
||||
{
|
||||
GimpDisplay *display = user_data;
|
||||
|
||||
gimp_display_flush (display);
|
||||
|
||||
return G_SOURCE_REMOVE;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue