- Timestamp:
- Mar 11, 2010, 9:37:07 PM (15 years ago)
- Branches:
- master, release-1.10, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- f449096
- Parents:
- 8830df47
- git-author:
- David Benjamin <davidben@mit.edu> (03/09/10 16:56:53)
- git-committer:
- David Benjamin <davidben@mit.edu> (03/11/10 21:37:07)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
popwin.c
r8830df47 r03c5bdd 4 4 { 5 5 pw->active=0; 6 pw->needsfirstrefresh=0;7 6 pw->lines=0; 8 7 pw->cols=0; … … 29 28 popwin = newwin(pw->lines-2, pw->cols-2, startline+1, startcol+1); 30 29 pw->poppanel = new_panel(popwin); 31 pw->needsfirstrefresh=1;32 30 33 31 meta(popwin,TRUE); … … 96 94 return(pw->cols-2); 97 95 } 98 99 int owl_popwin_needs_first_refresh(const owl_popwin *pw)100 {101 if (pw->needsfirstrefresh) return(1);102 return(0);103 }104 105 void owl_popwin_no_needs_first_refresh(owl_popwin *pw)106 {107 pw->needsfirstrefresh=0;108 }
Note: See TracChangeset
for help on using the changeset viewer.