diff options
author | monsta <[email protected]> | 2016-03-03 13:28:34 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-03-03 13:28:56 +0300 |
commit | 7d17435dedc9936a20c52df34ba449b6dbd440e0 (patch) | |
tree | 7bbddb6db33934ef3a7459e40a7422af430cea27 /command/command.c | |
parent | 53a8de123f76251e153dd4137a4d596f52993372 (diff) | |
download | mate-applets-7d17435dedc9936a20c52df34ba449b6dbd440e0.tar.bz2 mate-applets-7d17435dedc9936a20c52df34ba449b6dbd440e0.tar.xz |
command: minor style corrections
Diffstat (limited to 'command/command.c')
-rw-r--r-- | command/command.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/command/command.c b/command/command.c index f81ce49e..3fe3dcec 100644 --- a/command/command.c +++ b/command/command.c @@ -88,7 +88,7 @@ command_applet_destroy (MatePanelApplet *applet_widget, CommandApplet *command_a if (command_applet->timeout_id != 0) { - g_source_remove(command_applet->timeout_id); + g_source_remove (command_applet->timeout_id); command_applet->timeout_id = 0; } @@ -235,7 +235,7 @@ settings_width_changed (GSettings *settings, gchar *key, CommandApplet *command_ command_applet->width = width; /* execute command to start new timer */ - command_execute(command_applet); + command_execute (command_applet); } static void @@ -254,7 +254,7 @@ settings_interval_changed (GSettings *settings, gchar *key, CommandApplet *comma /* stop current timer */ if (command_applet->timeout_id != 0) { - g_source_remove(command_applet->timeout_id); + g_source_remove (command_applet->timeout_id); command_applet->timeout_id = 0; } |