From 89c4edc13f203db1641c63e22774262bbe61f36f Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 10 Nov 2015 10:13:39 +0100 Subject: loplugin:nullptr (automatic rewrite) Change-Id: I2bba104b1bff30910864e45b5b032533099742ff --- dbaccess/source/ui/control/ColumnControlWindow.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dbaccess/source/ui/control/ColumnControlWindow.cxx') diff --git a/dbaccess/source/ui/control/ColumnControlWindow.cxx b/dbaccess/source/ui/control/ColumnControlWindow.cxx index bea1115205f0..82624b22406c 100644 --- a/dbaccess/source/ui/control/ColumnControlWindow.cxx +++ b/dbaccess/source/ui/control/ColumnControlWindow.cxx @@ -37,7 +37,7 @@ using namespace ::com::sun::star::lang; // OColumnControlWindow OColumnControlWindow::OColumnControlWindow(vcl::Window* pParent ,const Reference& _rxContext) - : OFieldDescControl(pParent,NULL) + : OFieldDescControl(pParent,nullptr) , m_xContext(_rxContext) , m_sTypeNames(ModuleRes(STR_TABLEDESIGN_DBFIELDTYPES)) , m_bAutoIncrementEnabled(true) @@ -128,7 +128,7 @@ Reference< XConnection> OColumnControlWindow::getConnection() void OColumnControlWindow::setConnection(const Reference< XConnection>& _xCon) { m_xConnection = _xCon; - m_xFormatter = NULL; + m_xFormatter = nullptr; m_aDestTypeInfoIndex.clear(); m_aDestTypeInfo.clear(); -- cgit