diff options
Diffstat (limited to 'src/gui/studio/DeviceManagerDialog.cpp')
-rw-r--r-- | src/gui/studio/DeviceManagerDialog.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/gui/studio/DeviceManagerDialog.cpp b/src/gui/studio/DeviceManagerDialog.cpp index 6a8ef2f..d426994 100644 --- a/src/gui/studio/DeviceManagerDialog.cpp +++ b/src/gui/studio/DeviceManagerDialog.cpp @@ -110,7 +110,7 @@ DeviceManagerDialog::DeviceManagerDialog(TQWidget *parent, m_playTable->setSelectionMode(TQTable::SingleRow); TQFrame *frame = new TQFrame(groupBox); - TQVBoxLayout *vtqlayout = new TQVBoxLayout(frame); + TQVBoxLayout *vlayout = new TQVBoxLayout(frame); TQGrid *buttons = new TQGrid(2, Qt::Horizontal, frame); TQPushButton *addButton = new TQPushButton(i18n("New"), buttons); m_deletePlayButton = new TQPushButton(i18n("Delete"), buttons); @@ -118,8 +118,8 @@ DeviceManagerDialog::DeviceManagerDialog(TQWidget *parent, m_exportButton = new TQPushButton(i18n("Export..."), buttons); m_banksButton = new TQPushButton(i18n("Banks..."), buttons); m_controllersButton = new TQPushButton(i18n("Control Events..."), buttons); - vtqlayout->addWidget(buttons); - vtqlayout->addStretch(10); + vlayout->addWidget(buttons); + vlayout->addStretch(10); TQToolTip::add (addButton, @@ -169,12 +169,12 @@ DeviceManagerDialog::DeviceManagerDialog(TQWidget *parent, m_recordTable->setSelectionMode(TQTable::SingleRow); frame = new TQFrame(groupBox); - vtqlayout = new TQVBoxLayout(frame); + vlayout = new TQVBoxLayout(frame); buttons = new TQGrid(2, Qt::Horizontal, frame); addButton = new TQPushButton(i18n("New"), buttons); m_deleteRecordButton = new TQPushButton(i18n("Delete"), buttons); - vtqlayout->addWidget(buttons); - vtqlayout->addStretch(10); + vlayout->addWidget(buttons); + vlayout->addStretch(10); TQToolTip::add (addButton, @@ -209,10 +209,10 @@ DeviceManagerDialog::DeviceManagerDialog(TQWidget *parent, TQPushButton *closeButton = new TQPushButton(i18n("Close"), btnBox); - TQHBoxLayout* tqlayout = new TQHBoxLayout(btnBox, 0, 10); - tqlayout->addStretch(10); - tqlayout->addWidget(closeButton); - tqlayout->addSpacing(5); + TQHBoxLayout* layout = new TQHBoxLayout(btnBox, 0, 10); + layout->addStretch(10); + layout->addWidget(closeButton); + layout->addSpacing(5); KAction* close = KStdAction::close(TQT_TQOBJECT(this), TQT_SLOT(slotClose()), |