[gimp/tito: 6/50] revised tito, complete



commit 5a5ff76619657769573950e30f490e4756917941
Author: Srihari <ssvz visishta net>
Date:   Sat Mar 10 14:10:06 2012 +0530

    revised tito, complete

 app/actions/Makefile.am            |    1 +
 app/actions/dialogs-actions.c      |    5 +++--
 app/dialogs/Makefile.am            |    4 ++--
 app/dialogs/dialogs-constructors.c |    1 +
 app/dialogs/dialogs-constructors.h |    1 +
 app/dialogs/dialogs.c              |    1 +
 app/dialogs/tito-dialog.c          |    3 ++-
 app/dialogs/tito-dialog.h          |    3 ++-
 app/gui/gui.c                      |    3 ++-
 app/widgets/gimphelp-ids.h         |    2 +-
 menus/image-menu.xml.in            |    2 +-
 11 files changed, 17 insertions(+), 9 deletions(-)
---
diff --git a/app/actions/Makefile.am b/app/actions/Makefile.am
index cde061d..496a1d9 100644
--- a/app/actions/Makefile.am
+++ b/app/actions/Makefile.am
@@ -1,4 +1,5 @@
 ## Process this file with automake to produce Makefile.in
+
 AM_CPPFLAGS = \
        -DG_LOG_DOMAIN=\"Gimp-Actions\" \
        -I$(top_builddir)               \
diff --git a/app/actions/dialogs-actions.c b/app/actions/dialogs-actions.c
index 4f40bbf..0e6cc6e 100644
--- a/app/actions/dialogs-actions.c
+++ b/app/actions/dialogs-actions.c
@@ -14,6 +14,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
+
 #include "config.h"
 
 #include <gtk/gtk.h>
@@ -263,8 +264,8 @@ static const GimpStringActionEntry dialogs_toplevel_actions[] =
     GIMP_HELP_ABOUT_DIALOG },
     
     { "dialogs-tito", GTK_STOCK_ABOUT,
-    NC_("dialogs-action", "_Tito"), NULL,
-    NC_("dialogs-action", "Menu search and more"),
+    NC_("dialogs-action", "_Tito"), NULL,       //label
+    NC_("dialogs-action", "Menu search and more..."),//tooltip
     "gimp-tito-dialog",
     GIMP_HELP_TITO_DIALOG }
 };
diff --git a/app/dialogs/Makefile.am b/app/dialogs/Makefile.am
index a420162..b08360e 100644
--- a/app/dialogs/Makefile.am
+++ b/app/dialogs/Makefile.am
@@ -21,8 +21,8 @@ libappdialogs_a_sources = \
        \
        about-dialog.c                  \
        about-dialog.h                  \
-               tito-dialog.c                   \
-       tito-dialog.h  \
+       tito-dialog.c                   \
+       tito-dialog.h       \
        channel-options-dialog.c        \
        channel-options-dialog.h        \
        convert-precision-dialog.c      \
diff --git a/app/dialogs/dialogs-constructors.c b/app/dialogs/dialogs-constructors.c
index bebf792..916413c 100644
--- a/app/dialogs/dialogs-constructors.c
+++ b/app/dialogs/dialogs-constructors.c
@@ -14,6 +14,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
+
 #include "config.h"
 
 #include <gegl.h>
diff --git a/app/dialogs/dialogs-constructors.h b/app/dialogs/dialogs-constructors.h
index bf4649b..aa81b44 100644
--- a/app/dialogs/dialogs-constructors.h
+++ b/app/dialogs/dialogs-constructors.h
@@ -14,6 +14,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
+
 #ifndef __DIALOGS_CONSTRUCTORS_H__
 #define __DIALOGS_CONSTRUCTORS_H__
 
diff --git a/app/dialogs/dialogs.c b/app/dialogs/dialogs.c
index fdc2c8e..2249b80 100644
--- a/app/dialogs/dialogs.c
+++ b/app/dialogs/dialogs.c
@@ -17,6 +17,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
+
 #include "config.h"
 
 #include <gegl.h>
diff --git a/app/dialogs/tito-dialog.c b/app/dialogs/tito-dialog.c
index 0717713..04270de 100644
--- a/app/dialogs/tito-dialog.c
+++ b/app/dialogs/tito-dialog.c
@@ -1,5 +1,5 @@
 /* GIMP - The GNU Image Manipulation Program
- * Copyright (C) Srihari Sriraman, Suhas Bharadwaj, Vidyashree K and Zeeshan Ali Ansari
+ * Copyright (C) 2012 Srihari Sriraman, Suhas Bharadwaj, Vidyashree K, Zeeshan Ali Ansari
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -14,6 +14,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
+
 #include "config.h"           
 
 #include <string.h>
diff --git a/app/dialogs/tito-dialog.h b/app/dialogs/tito-dialog.h
index f658099..8feba93 100644
--- a/app/dialogs/tito-dialog.h
+++ b/app/dialogs/tito-dialog.h
@@ -1,5 +1,5 @@
 /* GIMP - The GNU Image Manipulation Program
- * Copyright (C) Srihari Sriraman, Suhas Bharadwaj, Vidyashree K and Zeeshan Ali Ansari
+ * Copyright (C) 2012 Srihari Sriraman, Suhas Bharadwaj, Vidyashree K, Zeeshan Ali Ansari
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -14,6 +14,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
+
 #ifndef __TITO_DIALOG_H__
 #define __TITO_DIALOG_H__
 
diff --git a/app/gui/gui.c b/app/gui/gui.c
index 6f6952e..0bd62a8 100644
--- a/app/gui/gui.c
+++ b/app/gui/gui.c
@@ -14,6 +14,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
+
 #include "config.h"
 
 #include <stdlib.h>
@@ -493,7 +494,7 @@ gui_restore_after_callback (Gimp               *gimp,
 
     gui_add_to_app_menu (image_ui_manager, group,
                          "/dummy-menubar/image-popup/Help/dialogs-tito",
-                         _("Tito"));
+                         _("Menu search and more"));
 
     /*  the preferences group  */
     group = ige_mac_menu_add_app_menu_group ();
diff --git a/app/widgets/gimphelp-ids.h b/app/widgets/gimphelp-ids.h
index 46f57c7..88b5ea1 100644
--- a/app/widgets/gimphelp-ids.h
+++ b/app/widgets/gimphelp-ids.h
@@ -508,7 +508,7 @@
 #define GIMP_HELP_DOCK_SHOW_BUTTON_BAR            "gimp-dock-show-button-bar"
 
 #define GIMP_HELP_ABOUT_DIALOG                    "gimp-about-dialog"
-#define GIMP_HELP_TITO_DIALOG                      "gimp-tito-dialog"
+#define GIMP_HELP_TITO_DIALOG                     "gimp-tito-dialog"
 #define GIMP_HELP_COLOR_DIALOG                    "gimp-color-dialog"
 #define GIMP_HELP_DEVICE_STATUS_DIALOG            "gimp-device-status-dialog"
 #define GIMP_HELP_DISPLAY_FILTER_DIALOG           "gimp-display-filter-dialog"
diff --git a/menus/image-menu.xml.in b/menus/image-menu.xml.in
index c1c8287..dfa4ddc 100644
--- a/menus/image-menu.xml.in
+++ b/menus/image-menu.xml.in
@@ -734,7 +734,7 @@
       <menuitem action="help-context-help" />
       <menuitem action="dialogs-tips" />
       <menuitem action="dialogs-about" />
-      <menuitem action="dialogs-tito"  />
+      <menuitem action="dialogs-tito" />
       <separator />
       <placeholder name="Programming" />
       <separator />


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]