summaryrefslogtreecommitdiff
path: root/sd/inc/customshowlist.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/inc/customshowlist.hxx')
-rw-r--r--sd/inc/customshowlist.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/inc/customshowlist.hxx b/sd/inc/customshowlist.hxx
index 0fdd8c041cb8..1d30473e5050 100644
--- a/sd/inc/customshowlist.hxx
+++ b/sd/inc/customshowlist.hxx
@@ -53,14 +53,14 @@ public:
SdCustomShow* First()
{
if( mShows.empty() )
- return NULL;
+ return nullptr;
mnCurPos = 0;
return mShows[mnCurPos];
}
SdCustomShow* Next()
{
++mnCurPos;
- return mnCurPos >= mShows.size() ? NULL : mShows[mnCurPos];
+ return mnCurPos >= mShows.size() ? nullptr : mShows[mnCurPos];
}
void Last()
{
@@ -69,13 +69,13 @@ public:
}
SdCustomShow* GetCurObject()
{
- return mShows.empty() ? NULL : mShows[mnCurPos];
+ return mShows.empty() ? nullptr : mShows[mnCurPos];
}
SdCustomShow* Remove(SdCustomShow* p)
{
std::vector<SdCustomShow*>::iterator it = std::find(mShows.begin(), mShows.end(), p);
if( it == mShows.end() )
- return NULL;
+ return nullptr;
mShows.erase(it);
return p;
}