Changeset 1724 for trunk/src/user32/listbox.cpp
- Timestamp:
- Nov 13, 1999, 5:42:43 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/listbox.cpp
r1433 r1724 1 /* $Id: listbox.cpp,v 1.1 1 1999-10-24 22:56:05 sandervlExp $ */1 /* $Id: listbox.cpp,v 1.12 1999-11-13 16:42:41 cbratschi Exp $ */ 2 2 /* 3 3 * Listbox controls … … 6 6 * Copyright 1999 Christoph Bratschi (ported from WINE) 7 7 * 8 * WINE version: 99 09238 * WINE version: 991031 9 9 */ 10 10 … … 507 507 // rect->left, rect->top, rect->right, rect->bottom ); 508 508 if (!item) 509 ExtTextOutA( hdc, rect->left + 1, rect->top + 1,509 ExtTextOutA( hdc, rect->left + 1, rect->top, 510 510 ETO_OPAQUE | ETO_CLIPPED, rect, NULL, 0, NULL ); 511 511 else if (!(descr->style & LBS_USETABSTOPS)) 512 ExtTextOutA( hdc, rect->left + 1, rect->top + 1,512 ExtTextOutA( hdc, rect->left + 1, rect->top, 513 513 ETO_OPAQUE | ETO_CLIPPED, rect, item->str, 514 514 strlen(item->str), NULL ); … … 516 516 { 517 517 /* Output empty string to paint background in the full width. */ 518 ExtTextOutA( hdc, rect->left + 1, rect->top + 1,518 ExtTextOutA( hdc, rect->left + 1, rect->top, 519 519 ETO_OPAQUE | ETO_CLIPPED, rect, NULL, 0, NULL ); 520 TabbedTextOutA( hdc, rect->left + 1 , rect->top + 1,520 TabbedTextOutA( hdc, rect->left + 1 , rect->top, 521 521 item->str, strlen(item->str), 522 522 descr->nb_tabs, descr->tabs, 0);
Note:
See TracChangeset
for help on using the changeset viewer.