Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4

pull/1/head
Timothy Pearson 12 years ago
parent 94bde91405
commit af170e7e3f

@ -1297,7 +1297,7 @@ void KSystemLog::load(LogMode* logMode, LogManager* manager) {
* config file. anything you write here will be available
* later when this app is restored
*/
void KSystemLog::saveProperties(KConfig* /*config*/) {
void KSystemLog::saveProperties(TDEConfig* /*config*/) {
kdDebug() << "saveProperties method." << endl;
}
@ -1307,7 +1307,7 @@ void KSystemLog::saveProperties(KConfig* /*config*/) {
* the app is being restored. read in here whatever you wrote
* in 'saveProperties'
*/
void KSystemLog::readProperties(KConfig* /*config*/) {
void KSystemLog::readProperties(TDEConfig* /*config*/) {
kdDebug() << "readProperties method." << endl;
}

@ -132,14 +132,14 @@ class KSystemLog : public KMainWindow {
* This function is called when it is time for the app to save its
* properties for session management purposes.
*/
void saveProperties(KConfig *);
void saveProperties(TDEConfig *);
/**
* This function is called when this app is restored. The KConfig
* This function is called when this app is restored. The TDEConfig
* object points to the session management config file that was saved
* with @ref saveProperties
*/
void readProperties(KConfig *);
void readProperties(TDEConfig *);
void setupLogLevels();

@ -132,7 +132,7 @@ void View::saveConfig() {
kdDebug() << "Saving View Layout..." << endl;
KSystemLogConfig* configXT=KSystemLogConfig::self();
KConfig* config=configXT->config();
TDEConfig* config=configXT->config();
TQString group="List";
group.append(logManager->getIndex());

Loading…
Cancel
Save