summaryrefslogtreecommitdiff
path: root/sw/source/uibase/utlui/bookctrl.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-03-11 12:45:00 +0200
committerNoel Grandin <noel@peralex.com>2015-03-11 13:40:46 +0200
commit10a1b861853bc7c53d03d372f913134f9a9065ad (patch)
tree06b64d8ff302995ae2f78247a9ce7499e8aa9ee5 /sw/source/uibase/utlui/bookctrl.cxx
parent67ff4ba5294352b7ed948b196551dea331ee0877 (diff)
convert MarkType to enum class
Change-Id: I73c23d327104b377834013a0a6bd2de18de2900b
Diffstat (limited to 'sw/source/uibase/utlui/bookctrl.cxx')
-rw-r--r--sw/source/uibase/utlui/bookctrl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/utlui/bookctrl.cxx b/sw/source/uibase/utlui/bookctrl.cxx
index d3ef629cf1d1..6a78ef5a0b45 100644
--- a/sw/source/uibase/utlui/bookctrl.cxx
+++ b/sw/source/uibase/utlui/bookctrl.cxx
@@ -114,7 +114,7 @@ void SwBookmarkControl::Command( const CommandEvent& rCEvt )
ppBookmark != pMarkAccess->getBookmarksEnd();
++ppBookmark)
{
- if(IDocumentMarkAccess::BOOKMARK == IDocumentMarkAccess::GetType(**ppBookmark))
+ if(IDocumentMarkAccess::MarkType::BOOKMARK == IDocumentMarkAccess::GetType(**ppBookmark))
{
aPop.InsertItem( nPopupId, ppBookmark->get()->GetName() );
aBookmarkIdx[nPopupId] = static_cast<sal_uInt16>(ppBookmark - ppBookmarkStart);