diff options
author | flow <flowlnlnln@gmail.com> | 2023-05-28 10:11:43 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-28 10:11:43 -0300 |
commit | ce2d58bb7d7e99da61b906253c0fea7815a82862 (patch) | |
tree | f958cd21fee8cba488e82229a1457db368079221 /launcher/ui/dialogs/ResourceDownloadDialog.cpp | |
parent | f24211e8b5d9af24ac3e27b0fdb50000a962c35f (diff) | |
parent | 7af116fb006e2eb62429740bd0abbe14f50ff244 (diff) | |
download | PrismLauncher-ce2d58bb7d7e99da61b906253c0fea7815a82862.tar.gz PrismLauncher-ce2d58bb7d7e99da61b906253c0fea7815a82862.tar.bz2 PrismLauncher-ce2d58bb7d7e99da61b906253c0fea7815a82862.zip |
Merge pull request #1083 from Ryex/fix/memory-leaks-develop
Diffstat (limited to 'launcher/ui/dialogs/ResourceDownloadDialog.cpp')
-rw-r--r-- | launcher/ui/dialogs/ResourceDownloadDialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/dialogs/ResourceDownloadDialog.cpp b/launcher/ui/dialogs/ResourceDownloadDialog.cpp index edb7d063..d2a8d33e 100644 --- a/launcher/ui/dialogs/ResourceDownloadDialog.cpp +++ b/launcher/ui/dialogs/ResourceDownloadDialog.cpp @@ -89,7 +89,7 @@ void ResourceDownloadDialog::reject() // won't work with subclasses if we put it in this ctor. void ResourceDownloadDialog::initializeContainer() { - m_container = new PageContainer(this); + m_container = new PageContainer(this, {}, this); m_container->setSizePolicy(QSizePolicy::Policy::Preferred, QSizePolicy::Policy::Expanding); m_container->layout()->setContentsMargins(0, 0, 0, 0); m_vertical_layout.addWidget(m_container); |