summaryrefslogtreecommitdiff
path: root/rsc/inc/rsclex.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'rsc/inc/rsclex.hxx')
-rw-r--r--rsc/inc/rsclex.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/rsc/inc/rsclex.hxx b/rsc/inc/rsclex.hxx
index 6d6fc43a5c3a..f3406f76bb5d 100644
--- a/rsc/inc/rsclex.hxx
+++ b/rsc/inc/rsclex.hxx
@@ -60,7 +60,7 @@ struct Node
Node* pPrev;
RSCINST aInst;
sal_uInt32 nTupelRec; // Rekursionstiefe fuer Tupel
- Node() { pPrev = NULL; nTupelRec = 0; }
+ Node() { pPrev = nullptr; nTupelRec = 0; }
};
class ObjectStack
@@ -69,10 +69,10 @@ class ObjectStack
Node* pRoot;
public:
- ObjectStack () { pRoot = NULL; }
+ ObjectStack () { pRoot = nullptr; }
const RSCINST & Top () { return pRoot->aInst; }
- bool IsEmpty() { return( pRoot == NULL ); }
+ bool IsEmpty() { return( pRoot == nullptr ); }
void Push( RSCINST aInst )
{
Node* pTmp;