diff options
author | Stefano Karapetsas <[email protected]> | 2014-01-15 10:56:08 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-01-15 10:56:08 +0100 |
commit | 9ae8cbe28a1c91b9a40d208c4045a3706e0929bc (patch) | |
tree | ea546f5d90dca34a1c0e0daef4684ef138b57ac1 /src/callbacks.cpp | |
parent | 0846ba2d034d2eb1fd43ad2122a34a45273210a9 (diff) | |
download | mate-system-monitor-9ae8cbe28a1c91b9a40d208c4045a3706e0929bc.tar.bz2 mate-system-monitor-9ae8cbe28a1c91b9a40d208c4045a3706e0929bc.tar.xz |
Fix indentation
Diffstat (limited to 'src/callbacks.cpp')
-rw-r--r-- | src/callbacks.cpp | 37 |
1 files changed, 18 insertions, 19 deletions
diff --git a/src/callbacks.cpp b/src/callbacks.cpp index 181beb9..4eccc70 100644 --- a/src/callbacks.cpp +++ b/src/callbacks.cpp @@ -154,20 +154,19 @@ cb_about (GtkAction *action, gpointer data) gtk_show_about_dialog ( NULL, - "name", _("System Monitor"), - "comments", _("View current processes and monitor " - "system state"), - "version", VERSION, - "copyright", "Copyright \xc2\xa9 2001-2004 Kevin Vandersloot\n" - "Copyright \xc2\xa9 2005-2007 Benoît Dejean", - "logo-icon-name", "utilities-system-monitor", - "authors", authors, - "artists", artists, - "documenters", documenters, - "translator-credits", _("translator-credits"), - "license", "GPL 2+", - "wrap-license", TRUE, - "website", "http://www.mate-desktop.org", + "name", _("System Monitor"), + "comments", _("View current processes and monitor system state"), + "version", VERSION, + "copyright", "Copyright \xc2\xa9 2001-2004 Kevin Vandersloot\n" + "Copyright \xc2\xa9 2005-2007 Benoît Dejean", + "logo-icon-name", "utilities-system-monitor", + "authors", authors, + "artists", artists, + "documenters", documenters, + "translator-credits", _("translator-credits"), + "license", "GPL 2+", + "wrap-license", TRUE, + "website", "http://www.mate-desktop.org", NULL ); } @@ -176,11 +175,11 @@ cb_about (GtkAction *action, gpointer data) void cb_help_contents (GtkAction *action, gpointer data) { - GError* error = 0; - if (!g_app_info_launch_default_for_uri("help:mate-system-monitor", NULL, &error)) { - g_warning("Could not display help : %s", error->message); - g_error_free(error); - } + GError* error = 0; + if (!g_app_info_launch_default_for_uri("help:mate-system-monitor", NULL, &error)) { + g_warning("Could not display help : %s", error->message); + g_error_free(error); + } } |