summaryrefslogtreecommitdiffstats
path: root/svtools/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-01-26 08:13:00 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-01-26 11:10:41 +0000
commit5cc2997f0e9b20a5aa91b61dea6070189b0a584a (patch)
tree05e10a2a561512b1e7eca85af67b958e9953dc09 /svtools/inc
parentconvert vectors to OString (diff)
downloadcore-5cc2997f0e9b20a5aa91b61dea6070189b0a584a.tar.gz
core-5cc2997f0e9b20a5aa91b61dea6070189b0a584a.zip
callcatcher: remove some unused code
Diffstat (limited to 'svtools/inc')
-rw-r--r--svtools/inc/svtools/table/tablecontrol.hxx36
1 files changed, 0 insertions, 36 deletions
diff --git a/svtools/inc/svtools/table/tablecontrol.hxx b/svtools/inc/svtools/table/tablecontrol.hxx
index 8856d597253a..cb2ddaf8d44b 100644
--- a/svtools/inc/svtools/table/tablecontrol.hxx
+++ b/svtools/inc/svtools/table/tablecontrol.hxx
@@ -106,42 +106,6 @@ namespace svt { namespace table
*/
sal_Int32 GetCurrentColumn() const;
- /** activates the cell at the given position
-
- @return
- <sal_True/> if the move was successful, <FALSE/> otherwise. Usual
- failure conditions include some other instance vetoing the move,
- or impossibility to execute the move at all (for instance because
- of invalid coordinates).
- */
- bool GoTo( ColPos _nColumnPos, RowPos _nRow);
-
- /** moves the active cell to the given column, by keeping the active row
-
- @return
- <sal_True/> if the move was successful, <FALSE/> otherwise. Usual
- failure conditions include some other instance vetoing the move,
- or impossibility to execute the move at all (for instance because
- of invalid coordinates).
- */
- inline bool GoToColumn( ColPos _nColumn )
- {
- return GoTo( _nColumn, GetCurrentRow() );
- }
-
- /** moves the active cell to the given row, by keeping the active column
-
- @return
- <sal_True/> if the move was successful, <FALSE/> otherwise. Usual
- failure conditions include some other instance vetoing the move,
- or impossibility to execute the move at all (for instance because
- of invalid coordinates).
- */
- bool GoToRow( RowPos _nRow )
- {
- return GoTo( GetCurrentColumn(), _nRow );
- }
-
SVT_DLLPRIVATE virtual void Resize();
virtual void Select();