diff options
Diffstat (limited to 'ksysv/ksvpathconfig.cpp')
-rw-r--r-- | ksysv/ksvpathconfig.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ksysv/ksvpathconfig.cpp b/ksysv/ksvpathconfig.cpp index bf7be35..cba5b77 100644 --- a/ksysv/ksvpathconfig.cpp +++ b/ksysv/ksvpathconfig.cpp @@ -32,7 +32,7 @@ * Constructs a KSVPathConfig which is a child of 'parent', with the * name 'name' and widget flags set to 'f' */ -KSVPathConfig::KSVPathConfig( QWidget* parent, const char* name, WFlags fl ) +KSVPathConfig::KSVPathConfig( TQWidget* parent, const char* name, WFlags fl ) : PathConfiguration( parent, name, fl ) { mSpacer->setFixedHeight (KDialog::spacingHint()); @@ -48,7 +48,7 @@ KSVPathConfig::~KSVPathConfig() void KSVPathConfig::browseServices() { - QString path = KFileDialog::getExistingDirectory(mServicesPath->text(), this); + TQString path = KFileDialog::getExistingDirectory(mServicesPath->text(), this); if (!path.isEmpty()) mServicesPath->setText(path); @@ -58,7 +58,7 @@ void KSVPathConfig::browseServices() void KSVPathConfig::browseRunlevels() { - QString path = KFileDialog::getExistingDirectory(mRunlevelPath->text(), this); + TQString path = KFileDialog::getExistingDirectory(mRunlevelPath->text(), this); if (!path.isEmpty()) mRunlevelPath->setText(path); |