summaryrefslogtreecommitdiffstats
path: root/kmail/configuredialog_p.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/configuredialog_p.cpp')
-rw-r--r--kmail/configuredialog_p.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kmail/configuredialog_p.cpp b/kmail/configuredialog_p.cpp
index f171830e..bd5fdcd1 100644
--- a/kmail/configuredialog_p.cpp
+++ b/kmail/configuredialog_p.cpp
@@ -20,7 +20,7 @@
// other tdenetwork headers: (none)
// other KDE headers:
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <tdestandarddirs.h>
#include <tdelocale.h>
#include <kdebug.h>
@@ -214,7 +214,7 @@ NewLanguageDialog::NewLanguageDialog( LanguageItemList & suppressedLangs,
for ( TQStringList::ConstIterator it = pathList.begin();
it != pathList.end(); ++it )
{
- KSimpleConfig entry( *it );
+ TDESimpleConfig entry( *it );
entry.setGroup( "KCM Locale" );
// full name:
TQString name = entry.readEntry( "Name" );
@@ -252,7 +252,7 @@ LanguageComboBox::LanguageComboBox( bool rw, TQWidget *parent, const char *name
int LanguageComboBox::insertLanguage( const TQString & language )
{
static TQString entryDesktop = TQString::fromLatin1("/entry.desktop");
- KSimpleConfig entry( locate("locale", language + entryDesktop) );
+ TDESimpleConfig entry( locate("locale", language + entryDesktop) );
entry.setGroup( "KCM Locale" );
TQString name = entry.readEntry( "Name" );
TQString output = TQString::fromLatin1("%1 (%2)").arg( name ).arg( language );