summaryrefslogtreecommitdiff
path: root/include/salhelper
diff options
context:
space:
mode:
Diffstat (limited to 'include/salhelper')
-rw-r--r--include/salhelper/dynload.hxx2
-rw-r--r--include/salhelper/singletonref.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/salhelper/dynload.hxx b/include/salhelper/dynload.hxx
index 91d70c12d2a6..b5b16fae4638 100644
--- a/include/salhelper/dynload.hxx
+++ b/include/salhelper/dynload.hxx
@@ -108,7 +108,7 @@ public:
/// Default constructor
ODynamicLoader()
{
- m_pLoader = 0;
+ m_pLoader = NULL;
}
/** Constructor, loads the library if necessary otherwise the refernece count will
diff --git a/include/salhelper/singletonref.hxx b/include/salhelper/singletonref.hxx
index 84064be2a0ce..52e54a513dc5 100644
--- a/include/salhelper/singletonref.hxx
+++ b/include/salhelper/singletonref.hxx
@@ -128,7 +128,7 @@ class SingletonRef
if (m_nRef == 0)
{
delete m_pInstance;
- m_pInstance = 0;
+ m_pInstance = NULL;
}
// <- GLOBAL SAFE
}