summaryrefslogtreecommitdiffstats
path: root/kpresenter/KPrPageIface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpresenter/KPrPageIface.cpp')
-rw-r--r--kpresenter/KPrPageIface.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kpresenter/KPrPageIface.cpp b/kpresenter/KPrPageIface.cpp
index b0ef3b286..ced48f279 100644
--- a/kpresenter/KPrPageIface.cpp
+++ b/kpresenter/KPrPageIface.cpp
@@ -45,7 +45,7 @@ DCOPRef KPrPageIface::textObject( int num )
{
KPrTextObject * textObj=m_page->textFrameSet(num);
if(textObj)
- return DCOPRef( kapp->dcopClient()->appId(),
+ return DCOPRef( tdeApp->dcopClient()->appId(),
textObj->dcopObject()->objId() );
return DCOPRef();
}
@@ -55,7 +55,7 @@ DCOPRef KPrPageIface::selectedObject( )
{
KPrObject * obj=m_page->getSelectedObj();
if(obj)
- return DCOPRef( kapp->dcopClient()->appId(),
+ return DCOPRef( tdeApp->dcopClient()->appId(),
obj->dcopObject()->objId() );
return DCOPRef();
}
@@ -70,7 +70,7 @@ DCOPRef KPrPageIface::object( int num )
{
if( num >= (int)m_page->objNums())
return DCOPRef();
- return DCOPRef( kapp->dcopClient()->appId(),
+ return DCOPRef( tdeApp->dcopClient()->appId(),
m_page->getObject(num)->dcopObject()->objId() );
}