summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-01 09:37:28 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-01 17:19:48 +0100
commit1e923777a1beae71ea143d2d55cd0e02ed1e03e0 (patch)
treecde740c32670f952e9cce4d05671e0312378633f /sd
parentf79e5dfcc3d59c6d78d69163b558b32ee9ff22df (diff)
coverity#738825 Uninitialized scalar field
Change-Id: Id61080e5ed087886af9a44d6016cd4caac5f918d
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/dlg/tpoption.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/dlg/tpoption.cxx b/sd/source/ui/dlg/tpoption.cxx
index 98b393784efa..454bd5fe2fb0 100644
--- a/sd/source/ui/dlg/tpoption.cxx
+++ b/sd/source/ui/dlg/tpoption.cxx
@@ -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()
{
}