Changeset 6469 for trunk/qt4-gui/src
- Timestamp:
- 07/26/08 19:51:49 (4 months ago)
- Files:
-
- 1 modified
-
trunk/qt4-gui/src/widgets/calendar.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt4-gui/src/widgets/calendar.cpp
r6448 r6469 70 70 71 71 myMatches.append(date); 72 #if (QT_VERSION >= QT_VERSION_CHECK(4, 4, 0)) 72 73 updateCell(date); 74 #else 75 update(); 76 #endif 73 77 } 74 78 … … 76 80 { 77 81 myMatches.clear(); 82 #if (QT_VERSION >= QT_VERSION_CHECK(4, 4, 0)) 78 83 updateCells(); 84 #else 85 update(); 86 #endif 79 87 } 80 88
