Changeset 85 for trunk/src/helpers
- Timestamp:
- Jul 6, 2001, 6:57:59 PM (24 years ago)
- Location:
- trunk/src/helpers
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/dialog.c
r83 r85 212 212 ********************************************************************/ 213 213 214 #define PM_GROUP_SPACING_X 20215 #define PM_GROUP_SPACING_TOP 30214 #define PM_GROUP_SPACING_X 10 215 #define PM_GROUP_SPACING_TOP 20 216 216 217 217 VOID ProcessTable(PTABLEDEF pTableDef, -
trunk/src/helpers/textview.c
r47 r85 1266 1266 { 1267 1267 pWordThis->lX = flbuf.lXCurrent; 1268 pWordThis->p vRectangle = (PVOID)pRect;1268 pWordThis->pRectangle = pRect; 1269 1269 lstAppendItem(&pRect->llWords, pWordThis); 1270 1270 ulWordsInThisRect++; … … 1310 1310 1311 1311 // store word in rectangle 1312 pWordThis->p vRectangle = (PVOID)pRect;1312 pWordThis->pRectangle = pRect; 1313 1313 lstAppendItem(&pRect->llWords, pWordThis); 1314 // ###memory leak right here!!!1314 // @@todo memory leak right here!!! 1315 1315 ulWordsInThisRect++; 1316 1316 … … 2138 2138 POINTL ptlStart; 2139 2139 ULONG flOptions = pWordThis->flOptions; 2140 PTXVRECTANGLE pLineRcl = (PTXVRECTANGLE)pWordThis->pvRectangle;2140 PTXVRECTANGLE pLineRcl = pWordThis->pRectangle; 2141 2141 2142 2142 RECTL rclLine; … … 3031 3031 if (pWord) 3032 3032 { 3033 PTXVRECTANGLE pRect = (PTXVRECTANGLE)pWord->pvRectangle;3033 PTXVRECTANGLE pRect = pWord->pRectangle; 3034 3034 ULONG ulWinCY = (ptxvd->rclViewText.yTop - ptxvd->rclViewText.yBottom); 3035 3035 -
trunk/src/helpers/tree.c
r83 r85 114 114 * 115 115 * -- Fully balanced trees can be quite expensive because on 116 * every insertion or deletion, the tree nodes must be r eordered.116 * every insertion or deletion, the tree nodes must be rotated. 117 117 * By contrast, "Red-black" binary balanced trees contain 118 118 * an additional bit in each node which marks the node as 119 119 * either red or black. This bit is used only for efficient 120 120 * rebalancing when inserting or deleting nodes. 121 *122 * The color of each node is instrumental in determining the123 * balance of the tree. During insert and delete operations,124 * nodes may be rotated to maintain tree balance.125 121 * 126 122 * I don't fully understand why this works, but if you really -
trunk/src/helpers/winh.c
r83 r85 258 258 * 259 259 ********************************************************************/ 260 261 /* 262 *@@ winhQueryWindowStyle: 263 * 264 *@@added V0.9.13 (2001-07-02) [umoeller] 265 */ 266 267 ULONG winhQueryWindowStyle(HWND hwnd) 268 { 269 return (WinQueryWindowULong(hwnd, QWL_STYLE)); 270 } 260 271 261 272 /*
Note:
See TracChangeset
for help on using the changeset viewer.