summaryrefslogtreecommitdiffstats
path: root/koshell/koshell_shell.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-01-22 17:48:01 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-02-03 22:54:28 +0900
commitfdde1e4ac285a7b43ca5f45f220ea7fec8db248b (patch)
tree2886714a5f837bc0b86f178624f8437dd863b6be /koshell/koshell_shell.cpp
parentf491bbc527febc11c4f3f2cf158735ae93a4e19a (diff)
downloadkoffice-fdde1e4ac285a7b43ca5f45f220ea7fec8db248b.tar.gz
koffice-fdde1e4ac285a7b43ca5f45f220ea7fec8db248b.zip
Use tdeApp
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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(), "");
}