From 7d17435dedc9936a20c52df34ba449b6dbd440e0 Mon Sep 17 00:00:00 2001 From: monsta Date: Thu, 3 Mar 2016 13:28:34 +0300 Subject: command: minor style corrections --- command/command.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'command/command.c') 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; } -- cgit v1.2.1