diff options
| author | Mikael Magnusson <mikachu@gmail.com> | 2014-11-03 11:58:06 +0100 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@gmail.com> | 2014-11-03 12:10:44 +0100 |
| commit | 031e3c13b4333ae8def24f4ccb2f777779d4a3a5 (patch) | |
| tree | d4e751787e6d8e9b8c763673bc9ba2038ac6698e /openbox/frame.h | |
| parent | 69dc27ed779173d0475f11001ea5268087b4b306 (diff) | |
Make sure to reset all the GSource timer ids
Avoids warnings like 'Source ID 8382 was not found when attempting to
remove it'. In particular some removals were missing in menuframe.c
resulting in a warning being printed every time a submenu was opened.
Diffstat (limited to 'openbox/frame.h')
| -rw-r--r-- | openbox/frame.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/frame.h b/openbox/frame.h index 915c08db..ae29c3b1 100644 --- a/openbox/frame.h +++ b/openbox/frame.h @@ -265,7 +265,7 @@ void frame_flash_stop(ObFrame *self); will be called when the animation finishes. But if another animation is started in the meantime, the callback will never get called. */ void frame_begin_iconify_animation(ObFrame *self, gboolean iconifying); -void frame_end_iconify_animation(ObFrame *self); +void frame_end_iconify_animation(gpointer data); #define frame_iconify_animating(f) (f->iconify_animation_going != 0) |
