diff options
Diffstat (limited to 'src/variouswidgets.cpp')
-rw-r--r-- | src/variouswidgets.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/variouswidgets.cpp b/src/variouswidgets.cpp index 529a961..705aa98 100644 --- a/src/variouswidgets.cpp +++ b/src/variouswidgets.cpp @@ -42,14 +42,14 @@ RunCommandRequester::RunCommandRequester(const TQString &runCommand, const TQStr { m_message = message; - TQHBoxLayout *tqlayout = new TQHBoxLayout(this, /*margin=*/0, KDialogBase::spacingHint()); + TQHBoxLayout *layout = new TQHBoxLayout(this, /*margin=*/0, KDialogBase::spacingHint()); m_runCommand = new TQLineEdit(runCommand, this); TQPushButton *pb = new TQPushButton(/*"C&hoose..."*/i18n("..."), this); pb->setSizePolicy(TQSizePolicy::Fixed, TQSizePolicy::Fixed); - tqlayout->addWidget(m_runCommand); - tqlayout->addWidget(pb); + layout->addWidget(m_runCommand); + layout->addWidget(pb); connect( pb, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotSelCommand()) ); } |