summaryrefslogtreecommitdiff
path: root/sc/source/ui/optdlg
diff options
context:
space:
mode:
authorEike Rathke <er@openoffice.org>2002-09-24 17:21:45 +0000
committerEike Rathke <er@openoffice.org>2002-09-24 17:21:45 +0000
commitbdca2dc01f86b498219d9506c6848841698c045c (patch)
tree3613751cba13a7e43a5c3bc80ee745e42a6ea35f /sc/source/ui/optdlg
parent2f26b3fa4a0ff7f0dfc9cee348ee4bf37f9cf892 (diff)
#100186# replace superfluous (and not fully implemented) ScRangeUtil::Make(Tab)*AreaString and ScRefTripel::GetRefString with (ScAddress|ScRange)::Format
Diffstat (limited to 'sc/source/ui/optdlg')
-rw-r--r--sc/source/ui/optdlg/tpusrlst.cxx11
1 files changed, 4 insertions, 7 deletions
diff --git a/sc/source/ui/optdlg/tpusrlst.cxx b/sc/source/ui/optdlg/tpusrlst.cxx
index 61b25c3a3034..59023266cf34 100644
--- a/sc/source/ui/optdlg/tpusrlst.cxx
+++ b/sc/source/ui/optdlg/tpusrlst.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: tpusrlst.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:45:03 $
+ * last change: $Author: er $ $Date: 2002-09-24 18:21:05 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -187,11 +187,8 @@ void ScTpUserLists::Init()
PutInOrder( nStartRow, nEndRow );
PutInOrder( nStartTab, nEndTab );
- pRangeUtil->MakeAreaString( ScArea( nStartTab,
- nStartCol, nStartRow,
- nEndCol, nEndRow ),
- aStrSelectedArea,
- pDoc );
+ ScRange( nStartCol, nStartRow, nStartTab, nEndCol, nEndRow, nEndTab
+ ).Format( aStrSelectedArea, SCR_ABS_3D, pDoc );
aBtnCopy.SetClickHdl ( LINK( this, ScTpUserLists, BtnClickHdl ) );
aBtnCopy.Enable();