diff options
Diffstat (limited to 'kppp')
-rw-r--r-- | kppp/providerdb.cpp | 6 | ||||
-rw-r--r-- | kppp/providerdb.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/kppp/providerdb.cpp b/kppp/providerdb.cpp index 37dbcce9..60351e0b 100644 --- a/kppp/providerdb.cpp +++ b/kppp/providerdb.cpp @@ -41,7 +41,7 @@ #include "pppdata.h" #include <tqlistbox.h> #include <tqlineedit.h> -#include <ksimpleconfig.h> +#include <tdesimpleconfig.h> #define UNENCODED_CHARS "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_" @@ -130,7 +130,7 @@ void ProviderDB::loadProviderInfo() { TQString fname = locate("appdata", prov); kdDebug(5002) << "Providerfile=" << fname << endl; - cfg = new KSimpleConfig(fname, true); + cfg = new TDESimpleConfig(fname, true); } @@ -224,7 +224,7 @@ PDB_Country::PDB_Country(TQWidget *parent) : TQWidget(parent) { TQString dirFile(fi->absFilePath()+"/.directory"); TQString entryName; if(TQFile::exists(dirFile)){ - KSimpleConfig config(dirFile); + TDESimpleConfig config(dirFile); config.setDesktopGroup(); entryName = config.readEntry("Name"); } diff --git a/kppp/providerdb.h b/kppp/providerdb.h index 4e60baa7..f7a64201 100644 --- a/kppp/providerdb.h +++ b/kppp/providerdb.h @@ -40,7 +40,7 @@ class TQLineEdit; class TQListBox; -class KSimpleConfig; +class TDESimpleConfig; class PDB_Intro : public TQWidget { TQ_OBJECT @@ -136,7 +136,7 @@ public slots: private: void loadProviderInfo(); - KSimpleConfig *cfg; + TDESimpleConfig *cfg; PDB_Intro *page1; PDB_Country *page2; |