summaryrefslogtreecommitdiffstats
path: root/kdialog
diff options
context:
space:
mode:
Diffstat (limited to 'kdialog')
-rw-r--r--kdialog/kdialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kdialog/kdialog.cpp b/kdialog/kdialog.cpp
index 6533d51c3..1c18a9ce3 100644
--- a/kdialog/kdialog.cpp
+++ b/kdialog/kdialog.cpp
@@ -221,7 +221,7 @@ static int directCommand(TDECmdLineArgs *args)
if ( !option.isEmpty() )
{
- KConfig* dontagaincfg = NULL;
+ TDEConfig* dontagaincfg = NULL;
// --dontagain
TQString dontagain; // TQString::null
if (args->isSet("dontagain"))
@@ -230,7 +230,7 @@ static int directCommand(TDECmdLineArgs *args)
TQStringList values = TQStringList::split( ':', value );
if( values.count() == 2 )
{
- dontagaincfg = new KConfig( values[ 0 ] );
+ dontagaincfg = new TDEConfig( values[ 0 ] );
KMessageBox::setDontShowAskAgainConfig( dontagaincfg );
dontagain = values[ 1 ];
}