summaryrefslogtreecommitdiffstats
path: root/ksysv/ksvpathconfig.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:25:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:25:18 +0000
commitaa3a1ca934bc541bddd3fa136a85f106f7da266e (patch)
tree9ad0b795aed8fa4ac30c2fe0fd1aacb8175714c0 /ksysv/ksvpathconfig.cpp
parentb10cf7066791a2f362495890cd50c984e8025412 (diff)
downloadtdeadmin-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.cpp6
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);