summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorRafael Dominguez <venccsralph@gmail.com>2012-03-28 19:54:56 -0430
committerLuboš Luňák <l.lunak@suse.cz>2012-04-13 18:42:09 +0200
commit5e0be5bd29ae0e592313de96df7b635549cf4e6c (patch)
treebe87f35c6bae3f7838759d6ddcc3e58d12865180 /sd
parenta35bc3a35701a55234b51c2c3bc04e7c0a1553b1 (diff)
Call size instead of count.
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/slidesorter/view/SlsInsertionIndicatorOverlay.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/slidesorter/view/SlsInsertionIndicatorOverlay.cxx b/sd/source/ui/slidesorter/view/SlsInsertionIndicatorOverlay.cxx
index b7d18c50dff4..6bde0447abde 100644
--- a/sd/source/ui/slidesorter/view/SlsInsertionIndicatorOverlay.cxx
+++ b/sd/source/ui/slidesorter/view/SlsInsertionIndicatorOverlay.cxx
@@ -110,7 +110,7 @@ void InsertionIndicatorOverlay::Create (const controller::Transferable* pTransfe
sal_Int32 nSelectionCount (0);
if (pTransferable->HasPageBookmarks())
- nSelectionCount = pTransferable->GetPageBookmarks().Count();
+ nSelectionCount = pTransferable->GetPageBookmarks().size();
else
{
DrawDocShell* pDataDocShell = dynamic_cast<DrawDocShell*>(&pTransferable->GetDocShell());