summaryrefslogtreecommitdiff
path: root/basctl/source/basicide/basicmod.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'basctl/source/basicide/basicmod.hxx')
-rw-r--r--basctl/source/basicide/basicmod.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/basicide/basicmod.hxx b/basctl/source/basicide/basicmod.hxx
index f30c30b3fff4..f4629278a003 100644
--- a/basctl/source/basicide/basicmod.hxx
+++ b/basctl/source/basicide/basicmod.hxx
@@ -31,7 +31,7 @@ class Module : public SfxModule
static Module* mpModule;
public:
Module ( ResMgr *pMgr, SfxObjectFactory *pObjFact) :
- SfxModule( pMgr, false, pObjFact, NULL )
+ SfxModule( pMgr, false, pObjFact, nullptr )
{ }
public:
static Module*& Get () { return mpModule; }
td>StringHolder detour is only really needed for ""_tstrStephan Bergmann 2023-07-31Introduce "..."_tstr as a companion to "..."_ostr/u"..."_ustr in template codeStephan Bergmann 2023-07-19Work around MSVC bug with "..."_ostr vs. u"..."_ostrStephan Bergmann 2023-07-14O[U]String literals (unusable for now, C++20 only)Stephan Bergmann 2023-04-12Use more *string_viewMike Kaganski 2023-04-10Use of O(U)StringNumber for float/double is actually a pessimisationMike Kaganski 2023-04-05Simplify O(U)String::number implementationMike Kaganski 2023-04-04Make O(U)String::boolean also return an O(U)StringNumberMike Kaganski 2023-03-29Prevent accidental OUString(nullptr)Mike Kaganski 2023-03-27Avoid dangling references to temporary O[U]StringConcatMarker instancesStephan Bergmann 2023-03-17Towards literal O[U]String types in C++20Stephan Bergmann