diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-04-26 10:55:40 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-04-26 10:55:40 +0200 |
commit | bdc7b541956c396bb32b6527305a836e771a80dd (patch) | |
tree | a1ef04169b1ee2e70474f2d67cb54f40d3c11e60 /reportdesign | |
parent | 84a409981a3ad481841c812d66721f89da7aeac6 (diff) |
Fix MSVC build
Change-Id: I6c13e9699a7ebc7cd3855242bd2bbab5f08b382b
Diffstat (limited to 'reportdesign')
-rw-r--r-- | reportdesign/source/ui/dlg/Navigator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reportdesign/source/ui/dlg/Navigator.cxx b/reportdesign/source/ui/dlg/Navigator.cxx index a3d7e01a4f8d..307dca5572df 100644 --- a/reportdesign/source/ui/dlg/Navigator.cxx +++ b/reportdesign/source/ui/dlg/Navigator.cxx @@ -839,7 +839,7 @@ void NavigatorTree::UserData::_propertyChanged(const beans::PropertyChangeEvent& { if ( bFooterOn ) ++nPos; - m_pTree->traverseSection(pMemFunSection(&aGroupHelper),pEntry,bFooterOn ? RID_SVXBMP_GROUPFOOTER : RID_SVXBMP_GROUPHEADER,nPos); + m_pTree->traverseSection(pMemFunSection(&aGroupHelper),pEntry,bFooterOn ? OUString(RID_SVXBMP_GROUPFOOTER) : OUString(RID_SVXBMP_GROUPHEADER),nPos); } } else if ( PROPERTY_EXPRESSION == _rEvent.PropertyName) |