diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-30 17:24:10 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-30 17:24:10 +0100 |
commit | c2f13bd8dff4526cdfca2eef7770feae3da8bf3a (patch) | |
tree | 858878e28497b0a16bc14f8ba256e73590323845 /vcl | |
parent | 2ca429e781cba94608e9838e2c1c50f1e8632b90 (diff) |
loplugin:nullptr
Change-Id: Ie296794db2d259ea9973a2042a93200c0f93d259
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/unx/gtk/gtksalframe.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/unx/gtk/gtksalframe.cxx b/vcl/unx/gtk/gtksalframe.cxx index 62b0e0688267..b4654040e6b9 100644 --- a/vcl/unx/gtk/gtksalframe.cxx +++ b/vcl/unx/gtk/gtksalframe.cxx @@ -923,7 +923,7 @@ GtkSalFrame::~GtkSalFrame() g_object_unref( G_OBJECT( m_pForeignTopLevel) ); delete m_pGraphics; - m_pGraphics = NULL; + m_pGraphics = nullptr; } void GtkSalFrame::moveWindow( long nX, long nY ) @@ -1171,7 +1171,7 @@ void GtkSalFrame::InitCommon() m_aSystemData.pShellWidget = m_aSystemData.pWidget; m_bGraphics = false; - m_pGraphics = NULL; + m_pGraphics = nullptr; // fake an initial geometry, gets updated via configure event or SetPosSize if( m_bDefaultPos || m_bDefaultSize ) |