X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fgtkeditable.c;h=43dfd45564fc675cd5e31682d3fcb48230946ad1;hb=5e2c23214564f7dcc687fa8467020eeb6b9407a9;hp=f9be37ee256ae95c8ff12a6620b54fecb345aa12;hpb=d4add8cefa6fa5c29bdb50f18e31cbfbfb38cc2b;p=~andy%2Fgtk diff --git a/gtk/gtkeditable.c b/gtk/gtkeditable.c index f9be37ee2..43dfd4556 100644 --- a/gtk/gtkeditable.c +++ b/gtk/gtkeditable.c @@ -12,9 +12,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * License along with this library. If not, see . */ /* @@ -30,13 +28,13 @@ * @Title: GtkEditable * * The #GtkEditable interface is an interface which should be implemented by - * text editing widgets, such as #GtkEntry and #GtkText. It contains functions + * text editing widgets, such as #GtkEntry and #GtkSpinButton. It contains functions * for generically manipulating an editable widget, a large number of action * signals used for key bindings, and several signals that an application can * connect to to modify the behavior of a widget. * * As an example of the latter usage, by connecting - * the following handler to "insert_text", an application + * the following handler to #GtkEditable::insert-text, an application * can convert all entry into a widget into uppercase. * * @@ -51,7 +49,6 @@ * gint *position, * gpointer data) * { - * int i; * gchar *result = g_utf8_strup (text, length); * * g_signal_handlers_block_by_func (editable, @@ -225,7 +222,7 @@ gtk_editable_insert_text (GtkEditable *editable, * * Deletes a sequence of characters. The characters that are deleted are * those characters at positions from @start_pos up to, but not including - * @end_pos. If @end_pos is negative, then the the characters deleted + * @end_pos. If @end_pos is negative, then the characters deleted * are those from @start_pos to the end of the text. * * Note that the positions are specified in characters, not bytes. @@ -250,7 +247,7 @@ gtk_editable_delete_text (GtkEditable *editable, * * Retrieves a sequence of characters. The characters that are retrieved * are those characters at positions from @start_pos up to, but not - * including @end_pos. If @end_pos is negative, then the the characters + * including @end_pos. If @end_pos is negative, then the characters * retrieved are those characters from @start_pos to the end of the text. * * Note that positions are specified in characters, not bytes. @@ -370,7 +367,7 @@ gtk_editable_delete_selection (GtkEditable *editable) * * Selects a region of text. The characters that are selected are * those characters at positions from @start_pos up to, but not - * including @end_pos. If @end_pos is negative, then the the + * including @end_pos. If @end_pos is negative, then the * characters selected are those characters from @start_pos to * the end of the text. *