diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:25:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:25:18 +0000 |
commit | aa3a1ca934bc541bddd3fa136a85f106f7da266e (patch) | |
tree | 9ad0b795aed8fa4ac30c2fe0fd1aacb8175714c0 /ksysv/ksvpathconfig.cpp | |
parent | b10cf7066791a2f362495890cd50c984e8025412 (diff) | |
download | tdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.tar.gz tdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeadmin@1157635 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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); |