diff options
Diffstat (limited to 'src/katemdi.cpp')
-rw-r--r-- | src/katemdi.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/katemdi.cpp b/src/katemdi.cpp index 5ffbbff..1115298 100644 --- a/src/katemdi.cpp +++ b/src/katemdi.cpp @@ -126,7 +126,7 @@ void GUIClient::registerToolView (ToolView *tv) // try to read the action shortcut KShortcut sc; - KConfig *cfg = kapp->config(); + TDEConfig *cfg = kapp->config(); TQString _grp = cfg->group(); cfg->setGroup("Shortcuts"); sc = KShortcut( cfg->readEntry( aname, "" ) ); @@ -470,7 +470,7 @@ class TmpToolViewSorter unsigned int pos; }; -void Sidebar::restoreSession (KConfig *config) +void Sidebar::restoreSession (TDEConfig *config) { // get the last correct placed toolview unsigned int firstWrong = 0; @@ -565,7 +565,7 @@ void Sidebar::restoreSession (KConfig *config) m_ownSplit->hide(); } -void Sidebar::saveSession (KConfig *config) +void Sidebar::saveSession (TDEConfig *config) { // store the own splitter sizes TQValueList<int> s = m_ownSplit->sizes(); @@ -742,7 +742,7 @@ bool MainWindow::hideToolView (ToolView *widget) return widget->sidebar()->hideWidget (widget); } -void MainWindow::startRestore (KConfig *config, const TQString &group) +void MainWindow::startRestore (TDEConfig *config, const TQString &group) { // first save this stuff m_restoreConfig = config; @@ -822,7 +822,7 @@ void MainWindow::finishRestore () m_restoreGroup = ""; } -void MainWindow::saveSession (KConfig *config, const TQString &group) +void MainWindow::saveSession (TDEConfig *config, const TQString &group) { if (!config) return; |