summaryrefslogtreecommitdiffstats
path: root/koshell/koshell_shell.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'koshell/koshell_shell.cpp')
-rw-r--r--koshell/koshell_shell.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/koshell/koshell_shell.cpp b/koshell/koshell_shell.cpp
index e7fb17fef..0043f8716 100644
--- a/koshell/koshell_shell.cpp
+++ b/koshell/koshell_shell.cpp
@@ -415,12 +415,12 @@ void KoShellWindow::updateCaption()
void KoShellWindow::slotSidebar_Part(int _item)
{
//kdDebug() << "Component part choosed:" << _item << endl;
- kapp->setOverrideCursor( TQCursor(TQt::WaitCursor) );
+ tdeApp->setOverrideCursor( TQCursor(TQt::WaitCursor) );
m_documentEntry = m_mapComponents[ _item ];
kdDebug() << m_documentEntry.service() << endl;
kdDebug() << m_documentEntry.name() << endl;
KoDocument *doc = m_documentEntry.createDoc();
- kapp->restoreOverrideCursor();
+ tdeApp->restoreOverrideCursor();
if (doc)
{
if ( doc->showEmbedInitDialog( this ) )
@@ -721,7 +721,7 @@ void KoShellWindow::showPartSpecificHelp()
if((m_activePage == m_lstPages.end()) || ((*m_activePage).m_pDoc == 0))
return;
- kapp->invokeHelp("", (*m_activePage).m_pDoc->instance()->aboutData()->appName(), "");
+ tdeApp->invokeHelp("", (*m_activePage).m_pDoc->instance()->aboutData()->appName(), "");
}