diff options
author | Timothy Pearson <[email protected]> | 2013-01-25 00:33:36 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-25 00:33:36 -0600 |
commit | 3c5631f74d1c75204f950140331e10f739082ee9 (patch) | |
tree | a2811ff6c81d3c771745cde47734e65b1da3d806 /kviewshell/kviewshell.cpp | |
parent | 6adb71382c3d5277c3dcbc4ec24c5ff36b4c07ef (diff) | |
download | tdegraphics-3c5631f74d1c75204f950140331e10f739082ee9.tar.gz tdegraphics-3c5631f74d1c75204f950140331e10f739082ee9.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kviewshell/kviewshell.cpp')
-rw-r--r-- | kviewshell/kviewshell.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kviewshell/kviewshell.cpp b/kviewshell/kviewshell.cpp index e9ffba38..26f1e20b 100644 --- a/kviewshell/kviewshell.cpp +++ b/kviewshell/kviewshell.cpp @@ -99,7 +99,7 @@ KViewShell::KViewShell(const TQString& defaultMimeType) // Setup session management connect( this, TQT_SIGNAL( restoreDocument(const KURL &, int) ), view, TQT_SLOT( restoreDocument(const KURL &, int))); - connect( this, TQT_SIGNAL( saveDocumentRestoreInfo(KConfig*) ), view, TQT_SLOT( saveDocumentRestoreInfo(KConfig*))); + connect( this, TQT_SIGNAL( saveDocumentRestoreInfo(TDEConfig*) ), view, TQT_SLOT( saveDocumentRestoreInfo(TDEConfig*))); setXMLFile( "kviewshell.rc" ); createGUI(view); @@ -168,7 +168,7 @@ void KViewShell::readSettings() resize(600, 300); // default size if the config file specifies no size setAutoSaveSettings( "General" ); // apply mainwindow settings (size, toolbars, etc.) - KConfig *config = kapp->config(); + TDEConfig *config = kapp->config(); config->setGroup("General"); recent->loadEntries(config, "Recent Files"); @@ -191,7 +191,7 @@ void KViewShell::readSettings() void KViewShell::writeSettings() { - KConfig *config = kapp->config(); + TDEConfig *config = kapp->config(); config->setGroup( "General" ); recent->saveEntries(config, "Recent Files"); @@ -199,7 +199,7 @@ void KViewShell::writeSettings() } -void KViewShell::saveProperties(KConfig* config) +void KViewShell::saveProperties(TDEConfig* config) { // the 'config' object points to the session managed // config file. anything you write here will be available @@ -208,7 +208,7 @@ void KViewShell::saveProperties(KConfig* config) } -void KViewShell::readProperties(KConfig* config) +void KViewShell::readProperties(TDEConfig* config) { // the 'config' object points to the session managed // config file. this function is automatically called whenever |