Changeset 452
- Timestamp:
- May 6, 2010, 10:01:24 AM (15 years ago)
- Location:
- trunk/Lucide/gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/Lucide/gui/findDlg.cpp ¶
r451 r452 36 36 37 37 #include <stdio.h> 38 #include <string.h> 38 39 39 40 #include "globals.h" … … 180 181 WinSetDlgItemText( hwnd, IDC_PAGES, pgnum ); 181 182 182 // highlight the text183 // highlight the current page 183 184 WinSendDlgItemMsg( hwnd, IDC_PAGE, EM_SETSEL, 184 185 MPFROM2SHORT(0, 256), NULL); 186 // set the maximum length for current page 187 snprintf(pgnum, sizeof(pgnum), "%d", _this->pages); 188 WinSendDlgItemMsg( hwnd, IDC_PAGE, EM_SETTEXTLIMIT, 189 MPFROMSHORT((SHORT)strlen(pgnum)), NULL); 185 190 186 191 return (MRESULT)FALSE; -
TabularUnified trunk/Lucide/gui/lucide.cpp ¶
r451 r452 224 224 delete pgfrm; 225 225 WinSetDlgItemText( hToolBar, TBID_OFPAGES, pgnum ); 226 227 // set the maximum length for current page 228 snprintf(pgnum, sizeof(pgnum), "%d", pages); 229 WinSendDlgItemMsg( hToolBar, TBID_PAGENUM, EM_SETTEXTLIMIT, 230 MPFROMSHORT((SHORT)strlen(pgnum)), NULL); 231 226 232 } 227 233 … … 240 246 WinSendMsg( hToolBar, TBM_ENABLEITEM, MPFROMSHORT(CM_LASTPAGE), (MPARAM)enlast ); 241 247 248 // set actual page 242 249 bool tmp = dontSwitchPage; 243 250 dontSwitchPage = true;
Note:
See TracChangeset
for help on using the changeset viewer.