diff options
author | trilene <trilene@runbox.com> | 2020-07-23 18:36:10 -0400 |
---|---|---|
committer | trilene <trilene@runbox.com> | 2020-07-23 18:36:10 -0400 |
commit | a4301048e3b2aa195ff73ff94a93011cf5f66c27 (patch) | |
tree | 9122db6cd37121aac33a124ea32e17b6cc0f80fd /src | |
parent | Send ICE candidates gathered after timeout (diff) | |
download | nheko-a4301048e3b2aa195ff73ff94a93011cf5f66c27.tar.xz |
Fix QLayout warning
Diffstat (limited to 'src')
-rw-r--r-- | src/dialogs/PlaceCall.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dialogs/PlaceCall.cpp b/src/dialogs/PlaceCall.cpp index c5c78f94..9ad16384 100644 --- a/src/dialogs/PlaceCall.cpp +++ b/src/dialogs/PlaceCall.cpp @@ -26,7 +26,7 @@ PlaceCall::PlaceCall( layout->setSpacing(conf::modals::WIDGET_SPACING); layout->setMargin(conf::modals::WIDGET_MARGIN); - auto buttonLayout = new QHBoxLayout(this); + auto buttonLayout = new QHBoxLayout; buttonLayout->setSpacing(15); buttonLayout->setMargin(0); |