summaryrefslogtreecommitdiff
path: root/sw/source/ui/app
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-08-15 10:42:13 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-08-15 10:42:31 +0100
commit0aab2230395bb8d2b021359218f481754c6a58c3 (patch)
tree216b7869c3bd405827ac9fa19696e5701b9a3c31 /sw/source/ui/app
parent9b7aa16a138ef4740deceac7d2e5bc6c8709b0c5 (diff)
gagh, NULL is an acceptable OString ctor argument
Change-Id: I592af9986a0512f4dc4cb0aea4cd78f675f4fead
Diffstat (limited to 'sw/source/ui/app')
-rw-r--r--sw/source/ui/app/docst.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/ui/app/docst.cxx b/sw/source/ui/app/docst.cxx
index 8f0dece50831..f35942086e90 100644
--- a/sw/source/ui/app/docst.cxx
+++ b/sw/source/ui/app/docst.cxx
@@ -283,7 +283,7 @@ void SwDocShell::ExecStyleSheet( SfxRequest& rReq )
sal_False, &pItem ))
sParent = ((const SfxStringItem*)pItem)->GetValue();
- nRet = Edit( sName, sParent, nFamily, nMask, sal_True, 0, 0, rReq.IsAPI() );
+ nRet = Edit( sName, sParent, nFamily, nMask, sal_True, OString(), 0, rReq.IsAPI() );
}
break;
@@ -445,7 +445,7 @@ void SwDocShell::ExecStyleSheet( SfxRequest& rReq )
switch(nSlot)
{
case SID_STYLE_EDIT:
- nRet = Edit(aParam, aEmptyStr, nFamily, nMask, sal_False, 0, pActShell );
+ nRet = Edit(aParam, aEmptyStr, nFamily, nMask, sal_False, OString(), pActShell );
break;
case SID_STYLE_DELETE:
nRet = Delete(aParam, nFamily);