diff options
author | John Fultz <jfultz@wolfram.com> | 2019-07-19 12:05:36 -0500 |
---|---|---|
committer | John Fultz <jfultz@wolfram.com> | 2019-07-19 12:05:36 -0500 |
commit | b6654916b426574a4f576d3511f21a85377746f9 (patch) | |
tree | a29c5d92541f1e0c6b418445a18d2f917d760ce8 /quackleio/froggetopt.h | |
parent | 595735c6fa5c9ed837151947e6ba1fbfdcd3190c (diff) |
Fix deprecation errors for Qt 5.13.
Most are Qt4-isms, except where noted.
* Replaced QFontMetrics::width with QFontMetrics::horizontalAdvance,
conditionally as the latter wasn't even introduced until Qt 5.11.
* QColor::light and dark instead of QColor::light and dark.
* QString() instead of QString::null.
* std::sort instead of qSort
* QTreeWidgetItem::setSelected instead of QTreeWidget::setItemSelected.
* QFileDialog::setOption(QFileDialog::DontConfirmOverwrite) instead
of QFileDialog::setConfirmOverwrite(false).
* QDrag::exec instead of QDrag::start.
Diffstat (limited to 'quackleio/froggetopt.h')
-rw-r--r-- | quackleio/froggetopt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quackleio/froggetopt.h b/quackleio/froggetopt.h index 895dd9e..84abf06 100644 --- a/quackleio/froggetopt.h +++ b/quackleio/froggetopt.h @@ -81,7 +81,7 @@ private: struct Option { Option( OptionType t = OUnknown, - char s = 0, const QString &l = QString::null ) + char s = 0, const QString &l = QString() ) : type( t ), sname( s ), lname( l ), |