From fdde1e4ac285a7b43ca5f45f220ea7fec8db248b Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 22 Jan 2025 17:48:01 +0900 Subject: Use tdeApp Signed-off-by: Michele Calgaro --- kword/KWordTableFrameSetIface.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kword/KWordTableFrameSetIface.cpp') diff --git a/kword/KWordTableFrameSetIface.cpp b/kword/KWordTableFrameSetIface.cpp index 930f30aee..0a89402c8 100644 --- a/kword/KWordTableFrameSetIface.cpp +++ b/kword/KWordTableFrameSetIface.cpp @@ -58,7 +58,7 @@ DCOPRef KWordTableFrameSetIface::cell( int pos ) if( ! i.current() ) return DCOPRef(); - return DCOPRef( kapp->dcopClient()->appId(), + return DCOPRef( tdeApp->dcopClient()->appId(), i->dcopObject()->objId() ); } @@ -66,7 +66,7 @@ DCOPRef KWordTableFrameSetIface::cell( uint row, uint col ) { if( row>=m_table->getRows() || col>= m_table->getColumns()) return DCOPRef(); - return DCOPRef( kapp->dcopClient()->appId(), + return DCOPRef( tdeApp->dcopClient()->appId(), m_table->cell(row,col)->dcopObject()->objId() ); } @@ -82,6 +82,6 @@ DCOPRef KWordTableFrameSetIface::startEditingCell(uint row, uint col ) if( !m_frametext || m_frametext->isDeleted()) return DCOPRef(); canvas->checkCurrentEdit(m_frametext, true); - return DCOPRef( kapp->dcopClient()->appId(), + return DCOPRef( tdeApp->dcopClient()->appId(), (static_cast( canvas->currentFrameSetEdit()))->dcopObject()->objId() ); } -- cgit v1.2.3