diff options
author | David Tardon <dtardon@redhat.com> | 2015-03-01 16:21:16 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2015-03-01 17:33:55 +0100 |
commit | 3f18467049cf0843730335c6bb0a09aa1df189f6 (patch) | |
tree | 8c89f71621763ef98bfce5964e477c0a442999a6 /sw | |
parent | d170afda29bf4557df568732b1feba47f2c9439f (diff) |
fix end condition
Change-Id: I420d873ebafd459cedaee62bdc623599b4c767f7
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/dialog/uiregionsw.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/dialog/uiregionsw.cxx b/sw/source/ui/dialog/uiregionsw.cxx index ecf9f935e761..25a16f9a2083 100644 --- a/sw/source/ui/dialog/uiregionsw.cxx +++ b/sw/source/ui/dialog/uiregionsw.cxx @@ -118,7 +118,7 @@ static void lcl_FillSubRegionList( SwWrtShell& rSh, ComboBox& rSubRegions, Combo lcl_FillList( rSh, rSubRegions, pAvailNames, 0 ); IDocumentMarkAccess* const pMarkAccess = rSh.getIDocumentMarkAccess(); for( IDocumentMarkAccess::const_iterator_t ppMark = pMarkAccess->getBookmarksBegin(); - ppMark != pMarkAccess->getBookmarksBegin(); + ppMark != pMarkAccess->getBookmarksEnd(); ++ppMark) { const ::sw::mark::IMark* pBkmk = ppMark->get(); |