- Timestamp:
- Jun 1, 2010, 3:24:23 PM (14 years ago)
- Branches:
- master, release-1.10, release-1.7, release-1.8, release-1.9
- Children:
- f3a9d4d
- Parents:
- 69873f7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
editwin.c
rf6fae8d r0b9e607 43 43 44 44 static void oe_set_curswin(owl_editwin *e, owl_window *w, int winlines, int wincols); 45 static void oe_red isplay(owl_window *win, WINDOW *curswin, void *user_data);45 static void oe_redraw(owl_window *win, WINDOW *curswin, void *user_data); 46 46 static void oe_reframe(owl_editwin *e); 47 47 static void oe_save_excursion(owl_editwin *e, oe_excursion *x); … … 171 171 e->wrapcol = 0; 172 172 if (e->win) { 173 e->repaint_id = g_signal_connect(w, "redraw", G_CALLBACK(oe_red isplay), e);173 e->repaint_id = g_signal_connect(w, "redraw", G_CALLBACK(oe_redraw), e); 174 174 e->resized_id = g_signal_connect(w, "resized", G_CALLBACK(oe_window_resized), e); 175 175 owl_window_dirty(e->win); … … 501 501 502 502 /* regenerate the text on the curses window */ 503 static void oe_red isplay(owl_window *win, WINDOW *curswin, void *user_data)503 static void oe_redraw(owl_window *win, WINDOW *curswin, void *user_data) 504 504 { 505 505 int x = -1, y = -1, t, hard;
Note: See TracChangeset
for help on using the changeset viewer.