summaryrefslogtreecommitdiffstats
path: root/kspread/kspread_cell.cc
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commit7c71ab86d1f7e387fc3df63b48df07231f111862 (patch)
tree30ba2d2f840ff5fd458b6113e9c3f2e8a71d510d /kspread/kspread_cell.cc
parentafbfdc507bfaafc8824a9808311d57a9ece87510 (diff)
downloadkoffice-7c71ab86d1f7e387fc3df63b48df07231f111862.tar.gz
koffice-7c71ab86d1f7e387fc3df63b48df07231f111862.zip
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kspread/kspread_cell.cc')
-rw-r--r--kspread/kspread_cell.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/kspread/kspread_cell.cc b/kspread/kspread_cell.cc
index 9314d220..c3c520f8 100644
--- a/kspread/kspread_cell.cc
+++ b/kspread/kspread_cell.cc
@@ -2177,7 +2177,7 @@ void Cell::paintCell( const KoRect &rect, TQPainter & painter,
Q_ASSERT(isDefault()
|| (((cellRef.x() == d->column) && (cellRef.y() == d->row))));
- Sheet::LayoutDirection sheetDir = format()->sheet()->tqlayoutDirection();
+ Sheet::LayoutDirection sheetDir = format()->sheet()->layoutDirection();
double left = coordinate.x();
@@ -2790,7 +2790,7 @@ void Cell::paintDefaultBorders( TQPainter& painter, const KoRect &rect,
*/
Doc* doc = sheet()->doc();
- Sheet::LayoutDirection sheetDir = format()->sheet()->tqlayoutDirection();
+ Sheet::LayoutDirection sheetDir = format()->sheet()->layoutDirection();
bool paintingToExternalDevice = painter.tqdevice()->isExtDev();
// Each cell is responsible for drawing it's top and left portions
@@ -3039,7 +3039,7 @@ void Cell::paintCommentIndicator( TQPainter& painter,
// Get the triangle.
TQPointArray point( 3 );
- if ( format()->sheet()->tqlayoutDirection()==Sheet::RightToLeft ) {
+ if ( format()->sheet()->layoutDirection()==Sheet::RightToLeft ) {
point.setPoint( 0, doc->zoomItX( cellRect.x() + 6.0 ),
doc->zoomItY( cellRect.y() ) );
point.setPoint( 1, doc->zoomItX( cellRect.x() ),
@@ -3089,7 +3089,7 @@ void Cell::paintFormulaIndicator( TQPainter& painter,
// Get the triangle...
TQPointArray point( 3 );
- if ( format()->sheet()->tqlayoutDirection()==Sheet::RightToLeft ) {
+ if ( format()->sheet()->layoutDirection()==Sheet::RightToLeft ) {
point.setPoint( 0, doc->zoomItX( cellRect.right() - 6.0 ),
doc->zoomItY( cellRect.bottom() ) );
point.setPoint( 1, doc->zoomItX( cellRect.right() ),
@@ -3474,7 +3474,7 @@ void Cell::paintPageBorders( TQPainter& painter,
SheetPrint* print = format()->sheet()->print();
- Sheet::LayoutDirection sheetDir = format()->sheet()->tqlayoutDirection();
+ Sheet::LayoutDirection sheetDir = format()->sheet()->layoutDirection();
Doc* doc = sheet()->doc();
int zcellRect_left = doc->zoomItX (cellRect.left());
@@ -3554,7 +3554,7 @@ void Cell::paintCellBorders( TQPainter& painter, const KoRect& rect,
Doc * doc = sheet()->doc();
- Sheet::LayoutDirection sheetDir = format()->sheet()->tqlayoutDirection();
+ Sheet::LayoutDirection sheetDir = format()->sheet()->layoutDirection();
// compute zoomed rectangles
// I don't use KoRect, because that ends up producing lots of warnings
@@ -7264,7 +7264,7 @@ bool Cell::calcDirtyFlag()
return isFormula() ? testFlag( Flag_CalcDirty ) : false;
}
-bool Cell::tqlayoutDirtyFlag() const
+bool Cell::layoutDirtyFlag() const
{
return testFlag( Flag_LayoutDirty );
}