summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-03-08 14:43:11 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-03-08 14:43:11 +0100
commit5c1234eac2b9f3a3ea032e4828a15bedca6b9ebe (patch)
tree7330bd5e24a77a7c12671cdd5e477c14e02f9e99 /dbaccess
parent576ab772555ed9f06995d9b5d605c90191500a76 (diff)
loplugin:nullptr
Change-Id: I0c78ddab5efb7a295ccf42b6539b5aa3b7009bf9
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/ui/querydesign/querycontroller.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/querydesign/querycontroller.cxx b/dbaccess/source/ui/querydesign/querycontroller.cxx
index 498a70b35b30..399640cdf0d1 100644
--- a/dbaccess/source/ui/querydesign/querycontroller.cxx
+++ b/dbaccess/source/ui/querydesign/querycontroller.cxx
@@ -141,7 +141,7 @@ namespace dbaui
#if OSL_DEBUG_LEVEL > 0
namespace
{
- void insertParseTree(SvTreeListBox* _pBox,::connectivity::OSQLParseNode* _pNode,SvTreeListEntry* _pParent = NULL)
+ void insertParseTree(SvTreeListBox* _pBox,::connectivity::OSQLParseNode* _pNode,SvTreeListEntry* _pParent = nullptr)
{
OUString rString;
if (!_pNode->isToken())
@@ -767,7 +767,7 @@ void OQueryController::Execute(sal_uInt16 _nId, const Sequence< PropertyValue >&
if ( _nId == ID_EDIT_QUERY_DESIGN )
{
- ::connectivity::OSQLParseNode* pTemp = pNode ? pNode->getChild(3)->getChild(1) : NULL;
+ ::connectivity::OSQLParseNode* pTemp = pNode ? pNode->getChild(3)->getChild(1) : nullptr;
// no where clause found
if ( pTemp && !pTemp->isLeaf() )
{