diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-12-01 20:52:30 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-12-01 21:00:36 +0000 |
commit | 2d40f9daa55e72cc4f5f83e382da11fe9625e159 (patch) | |
tree | b5c337e2bf05203e6b2940d1fa179f7c6d2090e0 | |
parent | 506b96431c407205b676fee31f2a5f93fc7f5a9d (diff) |
cppcheck: uninit member
-rw-r--r-- | toolkit/workben/layout/simple-paragraph.cxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/toolkit/workben/layout/simple-paragraph.cxx b/toolkit/workben/layout/simple-paragraph.cxx index 05391046862a..4cd204d107f7 100644 --- a/toolkit/workben/layout/simple-paragraph.cxx +++ b/toolkit/workben/layout/simple-paragraph.cxx @@ -152,10 +152,11 @@ namespace SVX { -SvxSimpleParagraphDialog::SvxSimpleParagraphDialog( Window* pParent ) : - SfxTabPage( pParent, SVX_RES( RID_SVXPAGE_STD_PARAGRAPH ), rAttr ), - Dialog( pParent, "simple-paragraph.xml", "dialog" ), - aLineSpacingList( this, "line-spacing-list" ) +SvxSimpleParagraphDialog::SvxSimpleParagraphDialog( Window* pParent ) + : SfxTabPage( pParent, SVX_RES( RID_SVXPAGE_STD_PARAGRAPH ), rAttr ) + , Dialog( pParent, "simple-paragraph.xml", "dialog" ) + , aLineSpacingList( this, "line-spacing-list" ) + , pPrevWin(NULL) { fprintf(stderr, "creating res mgr\n"); pMgr = ResMgr::CreateResMgr("SOME_NAME"); |