diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:26:52 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:31:55 +0100 |
commit | 05b4902145b0924393b5ae4d9e9dfb92d2926b99 (patch) | |
tree | 24ae58a44bf1239ab96d34cc9028118261b2d3ff /ucb/source/inc | |
parent | 1c4f33b5d8ba6a8cebb0235bb2e7e37e33045a5b (diff) |
loplugin:nullptr (automatic rewrite)
Change-Id: I72bf3e008a8941d6e0fdea81b6b3e4a959ff28c5
Diffstat (limited to 'ucb/source/inc')
-rw-r--r-- | ucb/source/inc/regexpmap.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ucb/source/inc/regexpmap.hxx b/ucb/source/inc/regexpmap.hxx index 33fc1aa49e5a..7485e1e6e5f9 100644 --- a/ucb/source/inc/regexpmap.hxx +++ b/ucb/source/inc/regexpmap.hxx @@ -433,9 +433,9 @@ public: RegexpMap & operator =(RegexpMap const & rOther); bool add(OUString const & rKey, Val const & rValue, bool bOverwrite, - OUString * pReverse = 0); + OUString * pReverse = nullptr); - iterator find(OUString const & rKey, OUString * pReverse = 0); + iterator find(OUString const & rKey, OUString * pReverse = nullptr); void erase(iterator const & rPos); @@ -450,7 +450,7 @@ public: size_type size() const; Val const * map(OUString const & rString, - OUString * pTranslation = 0, bool * pTranslated = 0) + OUString * pTranslation = nullptr, bool * pTranslated = nullptr) const; private: |