diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:25:28 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:31:50 +0100 |
commit | 6cd7bf2043146a630925a2e49336f02c802f707a (patch) | |
tree | 786cecd8ab993e25cda497d45b68007050c30d61 /include/svx/svdedtv.hxx | |
parent | 28f4bee7bd7378141d8569186162e1a3166eb012 (diff) |
loplugin:nullptr (automatic rewrite)
Change-Id: I71682f28c6a54d33da6b0c971f34d0a705ff04f5
Diffstat (limited to 'include/svx/svdedtv.hxx')
-rw-r--r-- | include/svx/svdedtv.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svx/svdedtv.hxx b/include/svx/svdedtv.hxx index 4f6e0dc553c5..3da98ac09106 100644 --- a/include/svx/svdedtv.hxx +++ b/include/svx/svdedtv.hxx @@ -170,7 +170,7 @@ protected: protected: // #i71538# make constructors of SdrView sub-components protected to avoid incomplete incarnations which may get casted to SdrView - SdrEditView(SdrModel* pModel1, OutputDevice* pOut = 0L); + SdrEditView(SdrModel* pModel1, OutputDevice* pOut = nullptr); virtual ~SdrEditView(); public: @@ -326,7 +326,7 @@ public: // Using pUserGrp an own group object can be set. // This is not used immediately, but via Clone copied. // The method creates SdrObjGroup-instancess if NULL is passed, - void GroupMarked(const SdrObject* pUserGrp=NULL); + void GroupMarked(const SdrObject* pUserGrp=nullptr); // All marked object groups are dissolved (1 level). // Now all previously marked member objects are marked. @@ -400,7 +400,7 @@ public: // are marked and these are capable to deliver a StarView-metafile, // this methods converts the metafile to a drawing object. // The SdrGrafObjs/SdrOle2Objs are replaced by the new objects. - void DoImportMarkedMtf(SvdProgressInfo *pProgrInfo=NULL); + void DoImportMarkedMtf(SvdProgressInfo *pProgrInfo=nullptr); bool IsImportMtfPossible() const { ForcePossibilities(); return bImportMtfPossible; } // If the mode VirtualObjectBundling is switched on, all ToTop/ToBtm |