1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Merge remote-tracking branch 'antis81/ngf/fix/multi-window-buttons'

This commit is contained in:
agilob 2015-09-24 19:23:04 +01:00
commit 45db1dff91
No known key found for this signature in database
GPG Key ID: 296F0B764741106C
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@
#include <QPushButton>
GenericChatForm::GenericChatForm(QWidget *parent)
: QWidget(parent)
: QWidget(parent, Qt::Window)
, audioInputFlag(false)
, audioOutputFlag(false)
{

View File

@ -32,7 +32,7 @@
#include <QWindow>
SettingsWidget::SettingsWidget(QWidget* parent)
: QWidget(parent)
: QWidget(parent, Qt::Window)
{
body = new QWidget();
QVBoxLayout* bodyLayout = new QVBoxLayout();