comparison src/gui.c @ 1906:ff9ecf14efe3 v7.2.203

updated for version 7.2-203
author vimboss
date Tue, 16 Jun 2009 14:01:43 +0000
parents fc89a4f98a8b
children f9c55e12835e
comparison
equal deleted inserted replaced
1905:1a00e831244b 1906:ff9ecf14efe3
3877 3877
3878 /* 3878 /*
3879 * Scrollbar stuff: 3879 * Scrollbar stuff:
3880 */ 3880 */
3881 3881
3882 /*
3883 * Called when something in the window layout has changed.
3884 */
3885 void
3886 gui_may_update_scrollbars()
3887 {
3888 if (gui.in_use && starting == 0)
3889 {
3890 out_flush();
3891 gui_init_which_components(NULL);
3892 gui_update_scrollbars(TRUE);
3893 }
3894 need_mouse_correct = TRUE;
3895 }
3896
3882 void 3897 void
3883 gui_update_scrollbars(force) 3898 gui_update_scrollbars(force)
3884 int force; /* Force all scrollbars to get updated */ 3899 int force; /* Force all scrollbars to get updated */
3885 { 3900 {
3886 win_T *wp; 3901 win_T *wp;