summaryrefslogtreecommitdiffstats
path: root/src/widgets
diff options
context:
space:
mode:
authorChristian Ehrlicher <ch.ehrlicher@gmx.de>2019-03-19 17:53:43 +0100
committerChristian Ehrlicher <ch.ehrlicher@gmx.de>2019-03-20 16:48:24 +0000
commit905e40abb4e257f718147bb9c22a8d19dde29a46 (patch)
treec239dbabf4bfa8a3f5cb1e6f3c307d0e173edcef /src/widgets
parente8cb52f035d93ab4c52d7fa88ed30ad324133f65 (diff)
QDialog: be more specific on how to replace deprecated functions
QDialog::setOrientation/setExtension() was marked as deprecated without a suggestion on how to replace those functions. Therefore add a suggestion (taken from the documentation) now. Change-Id: I13b2af2264064ca1c7c034cf6b920caaadcee113 Reviewed-by: Edward Welbourne <edward.welbourne@qt.io> Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io> Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@qt.io>
Diffstat (limited to 'src/widgets')
-rw-r--r--src/widgets/dialogs/qdialog.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/widgets/dialogs/qdialog.h b/src/widgets/dialogs/qdialog.h
index ce57ce5de7..ce2194a1de 100644
--- a/src/widgets/dialogs/qdialog.h
+++ b/src/widgets/dialogs/qdialog.h
@@ -70,10 +70,10 @@ public:
void setVisible(bool visible) override;
#if QT_DEPRECATED_SINCE(5, 13)
- QT_DEPRECATED void setOrientation(Qt::Orientation orientation);
- QT_DEPRECATED Qt::Orientation orientation() const;
- QT_DEPRECATED void setExtension(QWidget* extension);
- QT_DEPRECATED QWidget* extension() const;
+ QT_DEPRECATED_X("Use show/hide on the affected widget instead") void setOrientation(Qt::Orientation orientation);
+ QT_DEPRECATED_X("Use show/hide on the affected widget instead") Qt::Orientation orientation() const;
+ QT_DEPRECATED_X("Use show/hide on the affected widget instead") void setExtension(QWidget* extension);
+ QT_DEPRECATED_X("Use show/hide on the affected widget instead") QWidget* extension() const;
#endif
QSize sizeHint() const override;
@@ -98,7 +98,7 @@ public Q_SLOTS:
virtual void reject();
#if QT_DEPRECATED_SINCE(5, 13)
- QT_DEPRECATED void showExtension(bool);
+ QT_DEPRECATED_X("Use show/hide on the affected widget instead") void showExtension(bool);
#endif
protected: