Show
Ignore:
Timestamp:
07/26/08 19:51:49 (4 months ago)
Author:
flynd
Message:

QCalendarWidget::updateCell() and QCalendarWidget::updateCells() does not exist in Qt 4.3.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/qt4-gui/src/widgets/calendar.cpp

    r6448 r6469  
    7070 
    7171  myMatches.append(date); 
     72#if (QT_VERSION >= QT_VERSION_CHECK(4, 4, 0)) 
    7273  updateCell(date); 
     74#else 
     75  update(); 
     76#endif 
    7377} 
    7478 
     
    7680{ 
    7781  myMatches.clear(); 
     82#if (QT_VERSION >= QT_VERSION_CHECK(4, 4, 0)) 
    7883  updateCells(); 
     84#else 
     85  update(); 
     86#endif 
    7987} 
    8088