diff options
author | Chris Lahey <clahey@umich.edu> | 2000-02-28 17:10:37 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-02-28 17:10:37 +0800 |
commit | ef7adb93eb675bab9c648f9a009505b4e4cedb9c (patch) | |
tree | bab1439a661c1f41eff4b38a94a4332a7cb6fb21 | |
parent | 486e3906ec0be1b28f7a5122ff882e894df02f5f (diff) | |
download | gsoc2013-evolution-ef7adb93eb675bab9c648f9a009505b4e4cedb9c.tar gsoc2013-evolution-ef7adb93eb675bab9c648f9a009505b4e4cedb9c.tar.gz gsoc2013-evolution-ef7adb93eb675bab9c648f9a009505b4e4cedb9c.tar.bz2 gsoc2013-evolution-ef7adb93eb675bab9c648f9a009505b4e4cedb9c.tar.lz gsoc2013-evolution-ef7adb93eb675bab9c648f9a009505b4e4cedb9c.tar.xz gsoc2013-evolution-ef7adb93eb675bab9c648f9a009505b4e4cedb9c.tar.zst gsoc2013-evolution-ef7adb93eb675bab9c648f9a009505b4e4cedb9c.zip |
Compilation error.
2000-02-28 Chris Lahey <clahey@umich.edu>
* widgets/e-text/e-text.c: Compilation error.
svn path=/trunk/; revision=1973
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | widgets/e-text/e-text.c | 17 | ||||
-rw-r--r-- | widgets/text/e-text.c | 17 |
3 files changed, 20 insertions, 18 deletions
@@ -1,5 +1,9 @@ 2000-02-28 Chris Lahey <clahey@umich.edu> + * widgets/e-text/e-text.c: Compilation error. + +2000-02-28 Chris Lahey <clahey@umich.edu> + * widgets/e-text/e-text.c, widgets/e-text/e-text.h: Updated these to use the canvas ::update system properly. diff --git a/widgets/e-text/e-text.c b/widgets/e-text/e-text.c index 74cbf0fe8b..8bb19728c1 100644 --- a/widgets/e-text/e-text.c +++ b/widgets/e-text/e-text.c @@ -738,8 +738,6 @@ split_into_lines (EText *text) if (len == 0) lines->text = p; lines->length = strlen(lines->text); - - calc_line_widths (text); } /* Convenience function to set the text's GC's foreground color */ @@ -1149,6 +1147,7 @@ e_text_update (GnomeCanvasItem *item, double *affine, ArtSVP *clip_path, int fla } if ( text->needs_redraw ) { gnome_canvas_request_redraw (item->canvas, item->x1, item->y1, item->x2, item->y2); + text->needs_redraw = 0; } } @@ -1914,10 +1913,10 @@ e_text_event (GnomeCanvasItem *item, GdkEvent *event) } } if ( text->line_wrap ) - split_into_lines (text); + text->needs_split_into_lines = 1; else - calc_line_widths (text); - recalc_bounds (text); + text->needs_calc_line_widths = 1; + gnome_canvas_item_request_update (GNOME_CANVAS_ITEM(text)); } return_val = 0; break; @@ -2183,8 +2182,8 @@ e_text_command(ETextEventProcessor *tep, ETextEventProcessorCommand *command, gp text->selection_end = _get_position(text, command); } _delete_selection(text); - split_into_lines (text); - recalc_bounds (text); + text->needs_split_into_lines = 1; + gnome_canvas_item_request_update (GNOME_CANVAS_ITEM(text)); if (text->timer) { g_timer_reset(text->timer); } @@ -2195,8 +2194,8 @@ e_text_command(ETextEventProcessor *tep, ETextEventProcessorCommand *command, gp _delete_selection(text); } _insert(text, command->string, command->value); - split_into_lines (text); - recalc_bounds (text); + text->needs_split_into_lines = 1; + gnome_canvas_item_request_update (GNOME_CANVAS_ITEM(text)); if (text->timer) { g_timer_reset(text->timer); } diff --git a/widgets/text/e-text.c b/widgets/text/e-text.c index 74cbf0fe8b..8bb19728c1 100644 --- a/widgets/text/e-text.c +++ b/widgets/text/e-text.c @@ -738,8 +738,6 @@ split_into_lines (EText *text) if (len == 0) lines->text = p; lines->length = strlen(lines->text); - - calc_line_widths (text); } /* Convenience function to set the text's GC's foreground color */ @@ -1149,6 +1147,7 @@ e_text_update (GnomeCanvasItem *item, double *affine, ArtSVP *clip_path, int fla } if ( text->needs_redraw ) { gnome_canvas_request_redraw (item->canvas, item->x1, item->y1, item->x2, item->y2); + text->needs_redraw = 0; } } @@ -1914,10 +1913,10 @@ e_text_event (GnomeCanvasItem *item, GdkEvent *event) } } if ( text->line_wrap ) - split_into_lines (text); + text->needs_split_into_lines = 1; else - calc_line_widths (text); - recalc_bounds (text); + text->needs_calc_line_widths = 1; + gnome_canvas_item_request_update (GNOME_CANVAS_ITEM(text)); } return_val = 0; break; @@ -2183,8 +2182,8 @@ e_text_command(ETextEventProcessor *tep, ETextEventProcessorCommand *command, gp text->selection_end = _get_position(text, command); } _delete_selection(text); - split_into_lines (text); - recalc_bounds (text); + text->needs_split_into_lines = 1; + gnome_canvas_item_request_update (GNOME_CANVAS_ITEM(text)); if (text->timer) { g_timer_reset(text->timer); } @@ -2195,8 +2194,8 @@ e_text_command(ETextEventProcessor *tep, ETextEventProcessorCommand *command, gp _delete_selection(text); } _insert(text, command->string, command->value); - split_into_lines (text); - recalc_bounds (text); + text->needs_split_into_lines = 1; + gnome_canvas_item_request_update (GNOME_CANVAS_ITEM(text)); if (text->timer) { g_timer_reset(text->timer); } |