summaryrefslogtreecommitdiffstats
path: root/kspread/KSpreadTableIface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kspread/KSpreadTableIface.cpp')
-rw-r--r--kspread/KSpreadTableIface.cpp12
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;
}