summaryrefslogtreecommitdiffstats
path: root/kjsembed/bindings/kconfig_imp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kjsembed/bindings/kconfig_imp.cpp')
-rw-r--r--kjsembed/bindings/kconfig_imp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kjsembed/bindings/kconfig_imp.cpp b/kjsembed/bindings/kconfig_imp.cpp
index 3cf6e532..73ca58ed 100644
--- a/kjsembed/bindings/kconfig_imp.cpp
+++ b/kjsembed/bindings/kconfig_imp.cpp
@@ -40,7 +40,7 @@ Config::Config( TQObject *parent, const char *name)
if( name == 0)
m_config = kapp->config();
else
- m_config = new KConfig(name);
+ m_config = new TDEConfig(name);
if( !m_config->checkConfigFilesWritable(true) )
{
kdWarning( 80001 ) << "Could not write to config file." << endl;
@@ -61,7 +61,7 @@ Config::Config( TQObject *parent, const char *name , const TQString& confName)
: BindingObject(parent, name)
{
TQString fileName = ::locate("kde_config", confName);
- m_config = new KConfig(fileName);
+ m_config = new TDEConfig(fileName);
}
*/
Config::~Config()