diff options
Diffstat (limited to 'kspread/kspread_cell.h')
-rw-r--r-- | kspread/kspread_cell.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kspread/kspread_cell.h b/kspread/kspread_cell.h index 500804f3..fd100c45 100644 --- a/kspread/kspread_cell.h +++ b/kspread/kspread_cell.h @@ -265,7 +265,7 @@ public: /** * Moves around the cell. It cares about obscured and obscuring cells and - * forces, retqlayout, calculation and redrawing of the cell. + * forces, relayout, calculation and redrawing of the cell. */ void move( int column, int row ); @@ -807,7 +807,7 @@ public: void clearAllErrors(); /** - * Calculates the tqlayout of the cell, i,e, determines what should be shown + * Calculates the layout of the cell, i,e, determines what should be shown * for this cell, m_strOutText. */ void makeLayout( TQPainter &_painter, int _col, int _row ); @@ -900,9 +900,9 @@ public: * In that case the cell usually displays "#####" * * LayoutDirty - * Flag showing whether the current tqlayout is OK. + * Flag showing whether the current layout is OK. * If you change for example the fonts point size, set this flag. When the - * cell must draw itself on the screen it will first recalculate its tqlayout. + * cell must draw itself on the screen it will first recalculate its layout. * * CalcDirty * Shows whether recalculation is necessary. @@ -925,7 +925,7 @@ public: * If this flag is set, then it is known that this cell has to be updated * on the display. This means that somewhere in the calling stack there is a * function which will call @ref Sheet::updateCell once it retains - * the control. If a function changes the contents/tqlayout of this cell and this + * the control. If a function changes the contents/layout of this cell and this * flag is not set, then the function must set it at once. After the changes * are done the function must call <tt>m_pSheet->updateCell(...). * The flag is cleared by the function format()->sheet()->updateCell. |