diff options
author | Timothy Pearson <[email protected]> | 2013-01-25 00:06:28 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-25 00:06:28 -0600 |
commit | 83b79bb29aaa412caec6abcdb42ca21d248b3b3a (patch) | |
tree | f48e8ae855d4a0be0c3ecf912a92168a829ff8c5 /src/k3bsystemproblemdialog.cpp | |
parent | 2a3ced9fbd85b4fdbfa9b0a91f8d22e35ceaf6b5 (diff) | |
download | k3b-83b79bb29aaa412caec6abcdb42ca21d248b3b3a.tar.gz k3b-83b79bb29aaa412caec6abcdb42ca21d248b3b3a.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'src/k3bsystemproblemdialog.cpp')
-rw-r--r-- | src/k3bsystemproblemdialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/k3bsystemproblemdialog.cpp b/src/k3bsystemproblemdialog.cpp index 84fdb1d..de9d846 100644 --- a/src/k3bsystemproblemdialog.cpp +++ b/src/k3bsystemproblemdialog.cpp @@ -160,7 +160,7 @@ K3bSystemProblemDialog::K3bSystemProblemDialog( const TQValueList<K3bSystemProbl void K3bSystemProblemDialog::closeEvent( TQCloseEvent* e ) { if( m_checkDontShowAgain->isChecked() ) { - KConfigGroup grp( kapp->config(), "General Options" ); + TDEConfigGroup grp( kapp->config(), "General Options" ); grp.writeEntry( "check system config", false ); } @@ -601,7 +601,7 @@ void K3bSystemProblemDialog::checkSystem( TQWidget* parent, } // remember which version of K3b checked the system the last time - KConfigGroup cfg( k3bcore->config(), "General Options" ); + TDEConfigGroup cfg( k3bcore->config(), "General Options" ); cfg.writeEntry( "Last system check version", k3bcore->version() ); } @@ -678,7 +678,7 @@ TQPtrList<K3bDevice::Device> K3bSystemProblemDialog::checkForAutomounting() bool K3bSystemProblemDialog::readCheckSystemConfig() { - KConfigGroup cfgGrp( k3bcore->config(), "General Options" ); + TDEConfigGroup cfgGrp( k3bcore->config(), "General Options" ); K3bVersion configVersion( cfgGrp.readEntry( "Last system check version", "0.1" ) ); if( configVersion < k3bcore->version() ) |