summaryrefslogtreecommitdiff
path: root/basctl/source/basicide/iderdll.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basctl/source/basicide/iderdll.cxx')
-rw-r--r--basctl/source/basicide/iderdll.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/basctl/source/basicide/iderdll.cxx b/basctl/source/basicide/iderdll.cxx
index be9715598b01..cc715dfeb296 100644
--- a/basctl/source/basicide/iderdll.cxx
+++ b/basctl/source/basicide/iderdll.cxx
@@ -40,7 +40,7 @@ namespace basctl
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
-Module* Module::mpModule = 0;
+Module* Module::mpModule = nullptr;
namespace
{
@@ -80,7 +80,7 @@ Shell* GetShell ()
{
if (Dll* pDll = theDllInstance::get().get())
return pDll->GetShell();
- return 0;
+ return nullptr;
}
void ShellCreated (Shell* pShell)
@@ -94,14 +94,14 @@ void ShellDestroyed (Shell* pShell)
{
Dll* pDll = theDllInstance::get().get();
if (pDll && pDll->GetShell() == pShell)
- pDll->SetShell(0);
+ pDll->SetShell(nullptr);
}
ExtraData* GetExtraData()
{
if (Dll* pDll = theDllInstance::get().get())
return pDll->GetExtraData();
- return 0;
+ return nullptr;
}
@@ -113,7 +113,7 @@ namespace
{
Dll::Dll () :
- m_pShell(0)
+ m_pShell(nullptr)
{
SfxObjectFactory* pFact = &DocShell::Factory();
(void)pFact;