summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-12-03 12:03:14 +0200
committerNoel Grandin <noel@peralex.com>2015-12-03 13:57:23 +0200
commite6721d2d17f5f34dcac14c3379521bb7fb6b8c03 (patch)
treebba3964ac2a6dd225d8087aa01594ea717d2a359 /sc
parentea297dd2020c03673745428381e8a2b11b83f23b (diff)
uno::Sequence->std::vector in SfxIntegerListItem
Change-Id: Icdbb361feea2ebee74f9d0a906bdd3c2882443e8
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/view/tabvwsh3.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/tabvwsh3.cxx b/sc/source/ui/view/tabvwsh3.cxx
index 957fa3fdfc94..068b7fe2dbca 100644
--- a/sc/source/ui/view/tabvwsh3.cxx
+++ b/sc/source/ui/view/tabvwsh3.cxx
@@ -796,7 +796,7 @@ void ScTabViewShell::Execute( SfxRequest& rReq )
::std::vector < sal_Int32 > aIndexList;
const SfxIntegerListItem* pItem = rReq.GetArg<SfxIntegerListItem>(SID_SELECT_TABLES);
if ( pItem )
- pItem->GetList( aIndexList );
+ aIndexList = pItem->GetList();
else
{
ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();