coverity#738825 Uninitialized scalar field

Change-Id: Id61080e5ed087886af9a44d6016cd4caac5f918d
This commit is contained in:
Caolán McNamara
2014-05-01 09:37:28 +01:00
parent f79e5dfcc3
commit 1e923777a1

View File

@@ -195,8 +195,10 @@ SfxTabPage* SdTpOptionsContents::Create( Window* pWindow,
#define TABLE_COUNT 12
#define TOKEN ':'
SdTpOptionsMisc::SdTpOptionsMisc( Window* pParent, const SfxItemSet& rInAttrs ) :
SfxTabPage ( pParent, "OptSavePage","modules/simpress/ui/optimpressgeneralpage.ui", rInAttrs )
SdTpOptionsMisc::SdTpOptionsMisc(Window* pParent, const SfxItemSet& rInAttrs)
: SfxTabPage(pParent, "OptSavePage", "modules/simpress/ui/optimpressgeneralpage.ui", rInAttrs)
, nWidth(0)
, nHeight(0)
{
get(m_pCbxQuickEdit , "qickedit");
get(m_pCbxPickThrough , "textselected");
@@ -288,8 +290,6 @@ SdTpOptionsMisc::SdTpOptionsMisc( Window* pParent, const SfxItemSet& rInAttrs )
m_pCbScale->InsertEntry( GetScale( aTable[i], 1 ) );
}
SdTpOptionsMisc::~SdTpOptionsMisc()
{
}