diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-01-22 17:48:01 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-02-03 22:54:28 +0900 |
| commit | fdde1e4ac285a7b43ca5f45f220ea7fec8db248b (patch) | |
| tree | 2886714a5f837bc0b86f178624f8437dd863b6be /kspread/KSpreadTableIface.cpp | |
| parent | f491bbc527febc11c4f3f2cf158735ae93a4e19a (diff) | |
| download | koffice-fdde1e4ac285a7b43ca5f45f220ea7fec8db248b.tar.gz koffice-fdde1e4ac285a7b43ca5f45f220ea7fec8db248b.zip | |
Use tdeApp
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kspread/KSpreadTableIface.cpp')
| -rw-r--r-- | kspread/KSpreadTableIface.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kspread/KSpreadTableIface.cpp b/kspread/KSpreadTableIface.cpp index cbf37f202..d124c3c7b 100644 --- a/kspread/KSpreadTableIface.cpp +++ b/kspread/KSpreadTableIface.cpp @@ -65,7 +65,7 @@ private: }; KSpread::CellProxy::CellProxy( Sheet* sheet, const TQCString& prefix ) - : DCOPObjectProxy( kapp->dcopClient() ), m_prefix( prefix ) + : DCOPObjectProxy( tdeApp->dcopClient() ), m_prefix( prefix ) { m_cell = new CellIface; m_sheet = sheet; @@ -168,7 +168,7 @@ DCOPRef SheetIface::cell( int x, int y ) TQCString str = objId() + '/' + Cell::name( x, y ).latin1(); - return DCOPRef( kapp->dcopClient()->appId(), str ); + return DCOPRef( tdeApp->dcopClient()->appId(), str ); } DCOPRef SheetIface::cell( const TQString& name ) @@ -177,7 +177,7 @@ DCOPRef SheetIface::cell( const TQString& name ) str += "/"; str += name.latin1(); - return DCOPRef( kapp->dcopClient()->appId(), str ); + return DCOPRef( tdeApp->dcopClient()->appId(), str ); } DCOPRef SheetIface::column( int _col ) @@ -185,7 +185,7 @@ DCOPRef SheetIface::column( int _col ) //First col number = 1 if(_col <1) return DCOPRef(); - return DCOPRef( kapp->dcopClient()->appId(), + return DCOPRef( tdeApp->dcopClient()->appId(), m_sheet->nonDefaultColumnFormat( _col )->dcopObject()->objId() ); } @@ -195,7 +195,7 @@ DCOPRef SheetIface::row( int _row ) //First row number = 1 if(_row <1) return DCOPRef(); - return DCOPRef( kapp->dcopClient()->appId(), + return DCOPRef( tdeApp->dcopClient()->appId(), m_sheet->nonDefaultRowFormat( _row )->dcopObject()->objId() ); } @@ -249,7 +249,7 @@ bool SheetIface::processDynamic( const TQCString& fun, const TQByteArray&/*data* replyType = "DCOPRef"; TQDataStream out( replyData, IO_WriteOnly ); - out << DCOPRef( kapp->dcopClient()->appId(), str ); + out << DCOPRef( tdeApp->dcopClient()->appId(), str ); return true; } |
