Kaydet (Commit) 5c1234ea authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:nullptr

Change-Id: I0c78ddab5efb7a295ccf42b6539b5aa3b7009bf9
üst 576ab772
......@@ -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() )
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment