summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-02-17 14:38:33 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-02-18 09:48:28 +0100
commitf471fe7badd582ca64e452790b5ac46c365b8931 (patch)
treeefe86d678662350ba059bf726337b3e59967c9a7 /sfx2
parentdd4bd0ee74fae3d7e3a16e018021da173152571b (diff)
Better way to avoid ambiguities among ResId ctors
Change-Id: I43c4c1c5ad193cdd3182cea649fae6091984a121
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/control/objface.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/control/objface.cxx b/sfx2/source/control/objface.cxx
index 6e261e483124..315b7b0a450d 100644
--- a/sfx2/source/control/objface.cxx
+++ b/sfx2/source/control/objface.cxx
@@ -83,8 +83,8 @@ struct SfxInterface_Impl
bool bRegistered;
SfxInterface_Impl() :
- aPopupRes(0,*SfxApplication::GetOrCreate()->GetSfxResManager()),
- aStatBarRes(0,*SfxApplication::GetOrCreate()->GetSfxResManager())
+ aPopupRes(nullptr, *SfxApplication::GetOrCreate()->GetSfxResManager()),
+ aStatBarRes(nullptr, *SfxApplication::GetOrCreate()->GetSfxResManager())
, pModule(NULL)
, bRegistered(false)
{