[gimp] app: fix warning and indentation in windows_menu_display_reorder()
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] app: fix warning and indentation in windows_menu_display_reorder()
- Date: Tue, 17 Sep 2013 10:22:28 +0000 (UTC)
commit fe7a08e7c716271ed20d8c12c21b54682e9cc78f
Author: Michael Natterer <mitch gimp org>
Date: Tue Sep 17 12:20:39 2013 +0200
app: fix warning and indentation in windows_menu_display_reorder()
app/menus/windows-menu.c | 39 ++++++++++++++++++++-------------------
1 files changed, 20 insertions(+), 19 deletions(-)
---
diff --git a/app/menus/windows-menu.c b/app/menus/windows-menu.c
index ba1157d..75e20f1 100644
--- a/app/menus/windows-menu.c
+++ b/app/menus/windows-menu.c
@@ -187,31 +187,32 @@ windows_menu_display_remove (GimpContainer *container,
static void
windows_menu_display_reorder (GimpContainer *container,
- GimpDisplay *display,
- gint new_index,
- GimpUIManager *manager)
+ GimpDisplay *display,
+ gint new_index,
+ GimpUIManager *manager)
{
- gint n_display = gimp_container_get_n_children (container);
- gint i;
+ gint n_display = gimp_container_get_n_children (container);
+ gint i;
- for (i = new_index; i < n_display; i++)
- {
- GimpObject *d = gimp_container_get_child_by_index (container, i);
+ for (i = new_index; i < n_display; i++)
+ {
+ GimpObject *d = gimp_container_get_child_by_index (container, i);
- windows_menu_display_remove (container, GIMP_DISPLAY (d), manager);
- }
+ windows_menu_display_remove (container, GIMP_DISPLAY (d), manager);
+ }
- /* If I don't ensure the menu items are effectively removed, adding
- * the same ones may simply cancel the effect of the removal, hence
- * losing the menu reordering. */
- gtk_ui_manager_ensure_update (manager);
+ /* If I don't ensure the menu items are effectively removed, adding
+ * the same ones may simply cancel the effect of the removal, hence
+ * losing the menu reordering.
+ */
+ gtk_ui_manager_ensure_update (GTK_UI_MANAGER (manager));
- for (i = new_index; i < n_display; i++)
- {
- GimpObject *d = gimp_container_get_child_by_index (container, i);
+ for (i = new_index; i < n_display; i++)
+ {
+ GimpObject *d = gimp_container_get_child_by_index (container, i);
- windows_menu_display_add (container, GIMP_DISPLAY (d), manager);
- }
+ windows_menu_display_add (container, GIMP_DISPLAY (d), manager);
+ }
}
static void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]