diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-09-13 19:57:42 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-09-13 19:57:42 +0000 |
commit | 463aab93dd04bb815f13ff8f17019071162a8ac3 (patch) | |
tree | 539f4100082e7cb0fcb1a1ba449e3b7791eb4cfd /gtk/gtktext.c | |
parent | 9a5d4a2ff9e9117b731418d0deafd4204cace1c4 (diff) | |
download | gtk+-463aab93dd04bb815f13ff8f17019071162a8ac3.tar.gz |
Various cleanups. (#315360, Kjartan Maraas)
2005-09-13 Matthias Clasen <mclasen@redhat.com>
* gtk/*.c: Various cleanups. (#315360, Kjartan Maraas)
Diffstat (limited to 'gtk/gtktext.c')
-rw-r--r-- | gtk/gtktext.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/gtk/gtktext.c b/gtk/gtktext.c index dd5d11de33..ba0f37d26f 100644 --- a/gtk/gtktext.c +++ b/gtk/gtktext.c @@ -1107,7 +1107,7 @@ gboolean gtk_text_forward_delete (GtkText *text, guint nchars) { - guint old_lines, old_height; + guint old_lines = 0, old_height = 0; GtkOldEditable *old_editable = GTK_OLD_EDITABLE (text); gboolean frozen = FALSE; @@ -1601,13 +1601,11 @@ gtk_text_size_allocate (GtkWidget *widget, GtkAllocation *allocation) { GtkText *text; - GtkOldEditable *old_editable; g_return_if_fail (GTK_IS_TEXT (widget)); g_return_if_fail (allocation != NULL); text = GTK_TEXT (widget); - old_editable = GTK_OLD_EDITABLE (widget); widget->allocation = *allocation; if (GTK_WIDGET_REALIZED (widget)) @@ -2368,7 +2366,7 @@ fetch_lines (GtkText* text, static void fetch_lines_backward (GtkText* text) { - GList* new_lines = NULL, *new_line_start; + GList *new_line_start; GtkPropertyMark mark; if (CACHE_DATA(text->line_start_cache).start.index == 0) @@ -2378,7 +2376,7 @@ fetch_lines_backward (GtkText* text) CACHE_DATA(text->line_start_cache).start.index - 1, &CACHE_DATA(text->line_start_cache).start); - new_line_start = new_lines = fetch_lines (text, &mark, NULL, FetchLinesCount, 1); + new_line_start = fetch_lines (text, &mark, NULL, FetchLinesCount, 1); while (new_line_start->next) new_line_start = new_line_start->next; @@ -5106,12 +5104,8 @@ drawn_cursor_min (GtkText* text) static gint drawn_cursor_max (GtkText* text) { - GdkFont* font; - g_assert(text->cursor_mark.property); - font = MARK_CURRENT_FONT(text, &text->cursor_mark); - return text->cursor_pos_y - text->cursor_char_offset; } |