mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 14:38:04 -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)
|
// Load week days (scheduler)
|
||||||
for(uint i=1; i<=7; ++i) {
|
for(uint i=1; i<=7; ++i) {
|
||||||
|
#ifdef QT_4_5
|
||||||
schedule_days->addItem(QDate::longDayName(i, QDate::StandaloneFormat));
|
schedule_days->addItem(QDate::longDayName(i, QDate::StandaloneFormat));
|
||||||
|
#else
|
||||||
|
schedule_days->addItem(QDate::longDayName(i));
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
// Load options
|
// Load options
|
||||||
|
|||||||
Reference in New Issue
Block a user