From b6654916b426574a4f576d3511f21a85377746f9 Mon Sep 17 00:00:00 2001 From: John Fultz Date: Fri, 19 Jul 2019 12:05:36 -0500 Subject: 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. --- quackleio/froggetopt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'quackleio/froggetopt.h') 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 ), -- cgit v1.2.3