diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:13:39 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:31:22 +0100 |
commit | 89c4edc13f203db1641c63e22774262bbe61f36f (patch) | |
tree | 0aa28439045c19140ff51cd6cf1593d8cf515d89 /dbaccess/source/ui/misc/HtmlReader.cxx | |
parent | b58d56c5109f4cf6cacfc8e9c424b179a65bf1f1 (diff) |
loplugin:nullptr (automatic rewrite)
Change-Id: I2bba104b1bff30910864e45b5b032533099742ff
Diffstat (limited to 'dbaccess/source/ui/misc/HtmlReader.cxx')
-rw-r--r-- | dbaccess/source/ui/misc/HtmlReader.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/misc/HtmlReader.cxx b/dbaccess/source/ui/misc/HtmlReader.cxx index 7d11395f351b..1020cafc1477 100644 --- a/dbaccess/source/ui/misc/HtmlReader.cxx +++ b/dbaccess/source/ui/misc/HtmlReader.cxx @@ -163,7 +163,7 @@ void OHTMLReader::NextToken( int nToken ) case HTML_TABLE_OFF: if(!--m_nTableCount) { - m_xTable = NULL; + m_xTable = nullptr; } break; case HTML_TABLEROW_ON: @@ -517,7 +517,7 @@ bool OHTMLReader::CreateTable(int nToken) void OHTMLReader::setTextEncoding() { m_bMetaOptions = true; - ParseMetaOptions(NULL, NULL); + ParseMetaOptions(nullptr, nullptr); } void OHTMLReader::release() |