summaryrefslogtreecommitdiff
path: root/src/text.c
diff options
context:
space:
mode:
authorGlynn Foster <glynn.foster@sun.com>2003-01-19 12:48:57 +0000
committerGlynn Foster <gman@src.gnome.org>2003-01-19 12:48:57 +0000
commit3a90fe71679d726ffe39ad2a7ee9104485d53005 (patch)
tree27dcb8eb7cccf77c3829aa18feb06c7d6a8212fd /src/text.c
parentFixed a missing closing tag. (diff)
downloadzenity-3a90fe71679d726ffe39ad2a7ee9104485d53005.tar.gz
zenity-3a90fe71679d726ffe39ad2a7ee9104485d53005.tar.bz2
zenity-3a90fe71679d726ffe39ad2a7ee9104485d53005.zip
Attempt to make things work after 2 bottles of wine last night. Harmless
2003-01-19 Glynn Foster <glynn.foster@sun.com> * src/about.c: Attempt to make things work after 2 bottles of wine last night. Harmless changes though, so I'll commit them for posterity. * src/main.c: Add a new helper function for the error reporting that makes the translators life easier. Thanks to Ole for spotting this. * src/text.c, src/zenity.h: Lame white spacing hacking. * xmldocs.make: Put the docs in $(datadir)/help - not quite sure yet if yelp is going to like this or not.
Diffstat (limited to 'src/text.c')
-rw-r--r--src/text.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/text.c b/src/text.c
index 02b2f109..7601fd98 100644
--- a/src/text.c
+++ b/src/text.c
@@ -86,7 +86,7 @@ zenity_text_dialog_response (GtkWidget *widget, int response, gpointer data)
switch (response) {
case GTK_RESPONSE_CLOSE:
if (zen_text_data->editable) {
- GtkTextIter start,end;
+ GtkTextIter start, end;
gtk_text_buffer_get_bounds (zen_text_data->buffer, &start, &end);
g_printerr (gtk_text_buffer_get_text (zen_text_data->buffer, &start, &end, 0));
bgstack15