mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
Qt4.4 Compatibility fix (QDate::StandaloneFormat)
This commit is contained in:
parent
33f868144b
commit
8f40f41fef
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue