Skip to content

Commit

Permalink
fixed layout warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Jazzco authored and MrMontag committed Feb 24, 2023
1 parent 03316e0 commit f8db952
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/gdxviewer/gdxsymbolview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ GdxSymbolView::GdxSymbolView(QWidget *parent) :

// populate preferences
QWidgetAction* preferences = new QWidgetAction(ui->tbPreferences);
QVBoxLayout* vLayout = new QVBoxLayout(this);
QVBoxLayout* vLayout = new QVBoxLayout();
mPreferencesWidget = new QWidget(this);
mPreferencesWidget->setAutoFillBackground(true);
mSqDefaults = new QCheckBox("Squeeze Defaults", this);
Expand All @@ -110,7 +110,7 @@ GdxSymbolView::GdxSymbolView(QWidget *parent) :
mSqZeroes->setChecked(true);
vLayout->addWidget(mSqZeroes);

QGridLayout* gridLayout = new QGridLayout(this);
QGridLayout* gridLayout = new QGridLayout();

QLabel* lblValFormat = new QLabel("Format:", this);
gridLayout->addWidget(lblValFormat,0,0);
Expand Down
1 change: 0 additions & 1 deletion src/gdxviewer/gdxviewerstate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
#include "gdxviewerstate.h"
#include "gdxsymbolviewstate.h"
#include <QVariantMap>
#include <QDebug>

namespace gams {
namespace studio {
Expand Down

0 comments on commit f8db952

Please sign in to comment.