diff options
author | Kevin C. Krinke <kckrinke@opendoorsoftware.com> | 2003-07-13 23:03:18 +0000 |
---|---|---|
committer | Glynn Foster <gman@src.gnome.org> | 2003-07-13 23:03:18 +0000 |
commit | 652c90596e2c4fff6b7b748afcb01df6e21d22d9 (patch) | |
tree | a6de3c96a74723c5c7dfa30939494ca4e7de3f07 /src/calendar.c | |
parent | b0c4853c442b4a5a2e06ed3ed02bd893a58f2ae8 (diff) | |
download | zenity-652c90596e2c4fff6b7b748afcb01df6e21d22d9.tar.gz |
user input data output to STDOUT via g_print instead of outputting to
2003-07-11 Kevin C. Krinke <kckrinke@opendoorsoftware.com>
* src/calendar.c, src/entry.c, src/fileselection.c, src/text.c,
src/tree.c: user input data output to STDOUT via g_print instead
of outputting to STDERR via g_printerr. This makes it possible to
destinguish user input data from GTK+ warnings / errors.
* THANKS, src/about.c: I figure this is my second patch submission
so I belong in the credits...
Diffstat (limited to 'src/calendar.c')
-rw-r--r-- | src/calendar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/calendar.c b/src/calendar.c index e2d94ff..36b3fe4 100644 --- a/src/calendar.c +++ b/src/calendar.c @@ -100,7 +100,7 @@ zenity_calendar_dialog_response (GtkWidget *widget, int response, gpointer data) gtk_calendar_get_date (GTK_CALENDAR (calendar), &day, &month, &year); date = g_date_new_dmy (year, month + 1, day); g_date_strftime (time_string, 127, zen_cal_data->date_format, date); - g_printerr ("%s\n", time_string); + g_print ("%s\n", time_string); if (date != NULL) g_date_free (date); |