]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/gnome2-console/support.c
This commit was manufactured by cvs2svn to create tag
[bacula/bacula] / bacula / src / gnome2-console / support.c
index 1bc775a00ec920108270d9b7278b9d5d71e3052e..06a04b7dd5d757e2d10955d9aeb8ef062423ff04 100644 (file)
 
 GtkWidget*
 lookup_widget                          (GtkWidget       *widget,
-                                       const gchar     *widget_name)
+                                        const gchar     *widget_name)
 {
   GtkWidget *parent, *found_widget;
 
   for (;;)
     {
       if (GTK_IS_MENU (widget))
-       parent = gtk_menu_get_attach_widget (GTK_MENU (widget));
+        parent = gtk_menu_get_attach_widget (GTK_MENU (widget));
       else
-       parent = widget->parent;
+        parent = widget->parent;
       if (!parent)
-       parent = (GtkWidget*) g_object_get_data (G_OBJECT (widget), "GladeParentKey");
+        parent = (GtkWidget*) g_object_get_data (G_OBJECT (widget), "GladeParentKey");
       if (parent == NULL)
-       break;
+        break;
       widget = parent;
     }
 
   found_widget = (GtkWidget*) g_object_get_data (G_OBJECT (widget),
-                                                widget_name);
+                                                 widget_name);
   if (!found_widget)
-    g_warning (_("Widget not found: %s"), widget_name);
+    g_warning ("Widget not found: %s", widget_name);
   return found_widget;
 }
 
 /* This is an internally used function to create pixmaps. */
 GtkWidget*
 create_pixmap                          (GtkWidget       *widget,
-                                       const gchar     *filename)
+                                        const gchar     *filename)
 {
   GtkWidget *pixmap;
   gchar *pathname;
@@ -54,7 +54,7 @@ create_pixmap                          (GtkWidget       *widget,
       return gtk_image_new ();
 
   pathname = gnome_program_locate_file (NULL, GNOME_FILE_DOMAIN_APP_PIXMAP,
-                                       filename, TRUE, NULL);
+                                        filename, TRUE, NULL);
   if (!pathname)
     {
       g_warning (_("Couldn't find pixmap file: %s"), filename);
@@ -78,7 +78,7 @@ create_pixbuf                          (const gchar     *filename)
       return NULL;
 
   pathname = gnome_program_locate_file (NULL, GNOME_FILE_DOMAIN_APP_PIXMAP,
-                                       filename, TRUE, NULL);
+                                        filename, TRUE, NULL);
 
   if (!pathname)
     {
@@ -89,8 +89,8 @@ create_pixbuf                          (const gchar     *filename)
   pixbuf = gdk_pixbuf_new_from_file (pathname, &error);
   if (!pixbuf)
     {
-      fprintf (stderr, _("Failed to load pixbuf file: %s: %s\n"),
-              pathname, error->message);
+      fprintf (stderr, "Failed to load pixbuf file: %s: %s\n",
+               pathname, error->message);
       g_error_free (error);
     }
   g_free (pathname);
@@ -100,8 +100,8 @@ create_pixbuf                          (const gchar     *filename)
 /* This is used to set ATK action descriptions. */
 void
 glade_set_atk_action_description       (AtkAction       *action,
-                                       const gchar     *action_name,
-                                       const gchar     *description)
+                                        const gchar     *action_name,
+                                        const gchar     *description)
 {
   gint n_actions, i;
 
@@ -109,7 +109,7 @@ glade_set_atk_action_description       (AtkAction       *action,
   for (i = 0; i < n_actions; i++)
     {
       if (!strcmp (atk_action_get_name (action, i), action_name))
-       atk_action_set_description (action, i, description);
+        atk_action_set_description (action, i, description);
     }
 }