summaryrefslogtreecommitdiff
path: root/src/scale.c
diff options
context:
space:
mode:
authorArx Cruz <arxcruz@src.gnome.org>2011-06-17 10:47:07 -0300
committerArx Cruz <arxcruz@src.gnome.org>2011-06-17 10:51:00 -0300
commitd60e5eeeb379e5444ad218d7335b17eaa821b182 (patch)
tree8a593fdb55754ad668dbac29ef342e384303e1fd /src/scale.c
parentf77a0199af3a3d1362be95ab651186546492e8cd (diff)
Now if you use --timeout option, the return code will be properly handled
The default behavior will be done (ie. user click on ok button) The return code will be 5
Diffstat (limited to 'src/scale.c')
-rw-r--r--src/scale.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scale.c b/src/scale.c
index d6cc340..87bf55a 100644
--- a/src/scale.c
+++ b/src/scale.c
@@ -113,7 +113,7 @@ zenity_scale_dialog_response (GtkWidget *widget, int response, gpointer data)
switch (response) {
case GTK_RESPONSE_OK:
- zen_data->exit_code = zenity_util_return_exit_code (ZENITY_OK);
+ zenity_util_exit_code_with_data(ZENITY_OK, zen_data);
g_print ("%.0f\n", gtk_range_get_value (GTK_RANGE (scale)));
break;