[gimp] Minor coding style fix



commit c83294f4ce19a3b377a61372b9bcccd272946197
Author: Mukund Sivaraman <muks banu com>
Date:   Thu Sep 30 01:56:02 2010 +0530

    Minor coding style fix

 app/dialogs/about-dialog.c |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/app/dialogs/about-dialog.c b/app/dialogs/about-dialog.c
index 6223a34..e384c15 100644
--- a/app/dialogs/about-dialog.c
+++ b/app/dialogs/about-dialog.c
@@ -98,7 +98,7 @@ about_dialog_create (GimpContext *context)
 
       pixbuf = about_dialog_load_logo ();
 
-      copyright = g_strdup_printf(GIMP_COPYRIGHT, GIMP_GIT_LAST_COMMIT_YEAR);
+      copyright = g_strdup_printf (GIMP_COPYRIGHT, GIMP_GIT_LAST_COMMIT_YEAR);
 
       widget = g_object_new (GTK_TYPE_ABOUT_DIALOG,
                              "role",               "about-dialog",
@@ -116,14 +116,15 @@ about_dialog_create (GimpContext *context)
                              "authors",            authors,
                              "artists",            artists,
                              "documenters",        documenters,
-                             /* Translators: insert your names here, separated by newline */
+                             /* Translators: insert your names here,
+                                separated by newline */
                              "translator-credits", _("translator-credits"),
                              NULL);
 
       if (pixbuf)
         g_object_unref (pixbuf);
 
-      g_free(copyright);
+      g_free (copyright);
 
       dialog->dialog = widget;
 



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