summaryrefslogtreecommitdiffstats
path: root/knetattach
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:30:47 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:30:47 -0600
commitcc74f360bb40da3d79f58048f8e8611804980aa6 (patch)
treec4385d2c16b904757b1c8bb998a4aec6993373f7 /knetattach
parent79b21d47bce1ee428affc97534cd8b257232a871 (diff)
downloadtdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.tar.gz
tdebase-cc74f360bb40da3d79f58048f8e8611804980aa6.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'knetattach')
-rw-r--r--knetattach/knetattach.ui.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/knetattach/knetattach.ui.h b/knetattach/knetattach.ui.h
index d4c3baf84..b690f953b 100644
--- a/knetattach/knetattach.ui.h
+++ b/knetattach/knetattach.ui.h
@@ -18,7 +18,7 @@ void KNetAttach::init()
finishButton()->setText(i18n("Save && C&onnect"));
//setResizeMode(Fixed); FIXME: make the wizard fixed-geometry
setFinishEnabled(_folderParameters, false);
- KConfig recent("krecentconnections", true, false);
+ TDEConfig recent("krecentconnections", true, false);
recent.setGroup("General");
TQStringList idx = recent.readListEntry("Index");
if (idx.isEmpty()) {
@@ -75,7 +75,7 @@ void KNetAttach::showPage( TQWidget *page )
setInformationText("SMB");
updateForProtocol("SMB");
} else { //if (_recent->isChecked()) {
- KConfig recent("krecentconnections", true, false);
+ TDEConfig recent("krecentconnections", true, false);
if (!recent.hasGroup(_recentConnectionName->currentText())) {
recent.setGroup("General");
TQStringList idx = recent.readListEntry("Index");
@@ -186,7 +186,7 @@ void KNetAttach::finished()
}
if (!name.isEmpty()) {
- KConfig recent("krecentconnections", false, false);
+ TDEConfig recent("krecentconnections", false, false);
recent.setGroup("General");
TQStringList idx = recent.readListEntry("Index");
recent.deleteGroup(name); // erase anything stale
@@ -232,8 +232,8 @@ void KNetAttach::updatePort(bool encryption)
bool KNetAttach::doConnectionTest(const KURL& url)
{
- KIO::UDSEntry entry;
- if (KIO::NetAccess::stat(url, entry, this)) {
+ TDEIO::UDSEntry entry;
+ if (TDEIO::NetAccess::stat(url, entry, this)) {
// Anything to test here?
return true;
}