diff options
author | Sona Kurazyan <sona.kurazyan@qt.io> | 2019-08-29 10:36:01 +0200 |
---|---|---|
committer | Sona Kurazyan <sona.kurazyan@qt.io> | 2019-09-02 13:01:07 +0000 |
commit | 8e31932c295b158805410a9991bef8edc869d21b (patch) | |
tree | f12f6fcdccecf70760b0ae9c1fedaefef5e5a807 /src/plugins/bineditor | |
parent | 228f5fc319e33ed32cb1f997c65b68b5ddc18fd7 (diff) | |
download | qt-creator-8e31932c295b158805410a9991bef8edc869d21b.tar.gz |
Remove usages of deprecated APIs of QLayout
Replaced:
QLayout::setMargin() -> QLayout::setContentsMargins()
QLayout::margin() -> QLayout::getContentsMargins()
Task-number: QTBUG-76491
Change-Id: If28ef6910b3afe5d04e4746b74f9362a3e3b3c8e
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/bineditor')
-rw-r--r-- | src/plugins/bineditor/bineditorplugin.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/plugins/bineditor/bineditorplugin.cpp b/src/plugins/bineditor/bineditorplugin.cpp index 9fbba5c7f8..b6bc79d23a 100644 --- a/src/plugins/bineditor/bineditorplugin.cpp +++ b/src/plugins/bineditor/bineditorplugin.cpp @@ -368,7 +368,6 @@ public: auto l = new QHBoxLayout; auto w = new QWidget; - l->setMargin(0); l->setContentsMargins(0, 0, 5, 0); l->addStretch(1); l->addWidget(m_addressEdit); |