X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fcomments-dialog.c;h=ba312ff01fd7c8d19d7f57f7b9c2beb9133acfc1;hb=df11254fddfd186f3d947c9891ab85eca20739ab;hp=1d31777379a0e3c7b4d3dbe951b44d60d4db4350;hpb=0b0ca44889e637251cb5f2dbf3c7fdc4ec8b9bd7;p=pspp diff --git a/src/ui/gui/comments-dialog.c b/src/ui/gui/comments-dialog.c index 1d31777379..ba312ff01f 100644 --- a/src/ui/gui/comments-dialog.c +++ b/src/ui/gui/comments-dialog.c @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2007, 2010, 2011, 2012 Free Software Foundation + Copyright (C) 2007, 2010, 2011, 2012, 2013 Free Software Foundation This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -74,16 +74,10 @@ wrap_line (GtkTextBuffer *buffer, if ( chars > DOC_LINE_LENGTH ) { GtkTextIter line_fold = *iter; - GtkTextIter cursor; gtk_text_iter_set_line_offset (&line_fold, DOC_LINE_LENGTH); gtk_text_buffer_insert (buffer, &line_fold, "\r\n", 2); - - cursor = line_fold; - gtk_text_iter_forward_to_line_end (&cursor); - - gtk_text_buffer_place_cursor (buffer, &cursor); } }