Variable name

This commit is contained in:
craig.p.drummond
2013-04-22 19:45:38 +00:00
committed by craig.p.drummond
parent 9671c4981b
commit 66708797b5

View File

@@ -112,8 +112,8 @@ RgDialog::RgDialog(QWidget *parent)
setButtons(User1|Ok|Cancel);
setCaption(i18n("ReplayGain"));
setAttribute(Qt::WA_DeleteOnClose);
QWidget *mainWidet = new QWidget(this);
QBoxLayout *layout=new QBoxLayout(QBoxLayout::TopToBottom, mainWidet);
QWidget *mainWidget = new QWidget(this);
QBoxLayout *layout=new QBoxLayout(QBoxLayout::TopToBottom, mainWidget);
view = new QTreeWidget(this);
statusLabel = new QLabel(this);
statusLabel->setVisible(false);
@@ -145,7 +145,7 @@ RgDialog::RgDialog(QWidget *parent)
layout->addWidget(view);
layout->addWidget(statusLabel);
layout->addWidget(progress);
setMainWidget(mainWidet);
setMainWidget(mainWidget);
#ifdef ENABLE_KDE_SUPPORT
setButtonGuiItem(Ok, KStandardGuiItem::save());
setButtonGuiItem(Cancel, KStandardGuiItem::close());