diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-09-15 15:34:04 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-09-15 15:34:04 +0200 |
commit | 582321c1f6509868a054afe1daf757baf2ffbe88 (patch) | |
tree | 8679b19214399e5b4105aad5bb44b1ebb744853c /editeng | |
parent | a097d680d2e8eccbfba42ae1cf6b316235460291 (diff) |
Missing initialization of SvxBorderLine::m_pColorGapFn
...since 6dd4905a7ac93a48dc87358da3ba0a8078bbb6cf "loplugin:constantparam in
dbaccess..editeng"
Change-Id: Ib27615069ac1c7061ad691aada227ebdd70326e5
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/items/borderline.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editeng/source/items/borderline.cxx b/editeng/source/items/borderline.cxx index 16dd8fdeb307..f6ffce807a0a 100644 --- a/editeng/source/items/borderline.cxx +++ b/editeng/source/items/borderline.cxx @@ -101,6 +101,7 @@ SvxBorderLine::SvxBorderLine( const Color *pCol, long nWidth, , m_bUseLeftTop( false ) , m_pColorOutFn( pColorOutFn ) , m_pColorInFn( pColorInFn ) +, m_pColorGapFn( nullptr ) { if ( pCol ) aColor = *pCol; |