mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 22:18:05 -06:00
Qt4.4 Compatibility fix (QDate::StandaloneFormat)
This commit is contained in:
@@ -132,7 +132,11 @@ options_imp::options_imp(QWidget *parent):QDialog(parent){
|
||||
|
||||
// Load week days (scheduler)
|
||||
for(uint i=1; i<=7; ++i) {
|
||||
#ifdef QT_4_5
|
||||
schedule_days->addItem(QDate::longDayName(i, QDate::StandaloneFormat));
|
||||
#else
|
||||
schedule_days->addItem(QDate::longDayName(i));
|
||||
#endif
|
||||
}
|
||||
|
||||
// Load options
|
||||
|
||||
Reference in New Issue
Block a user