[Libreoffice-commits] core.git: dictionaries svtools/source
Julien Nabet
serval2412 at yahoo.fr
Mon Jun 17 13:27:12 PDT 2013
dictionaries | 2 +-
svtools/source/misc/embedhlp.cxx | 2 ++
svtools/source/svrtf/svparser.cxx | 2 +-
3 files changed, 4 insertions(+), 2 deletions(-)
New commits:
commit ea3b8ab7899ee12672f6dc8b188a8744e45ca8e6
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Mon Jun 17 22:26:38 2013 +0200
cppcheck: fix some uninitMemberVar in svtools part
Change-Id: Icee2501b2a33afddaa3d08186bb806acf785bf4c
diff --git a/dictionaries b/dictionaries
index 8da7237..98b40ee 160000
--- a/dictionaries
+++ b/dictionaries
@@ -1 +1 @@
-Subproject commit 8da7237c1ddb4eba8f7ce2b5c08e84353d1095e9
+Subproject commit 98b40eee9d84dd95120c0b9ddf1a0d517c2122af
diff --git a/svtools/source/misc/embedhlp.cxx b/svtools/source/misc/embedhlp.cxx
index 7a3ce24..6a88fa1 100644
--- a/svtools/source/misc/embedhlp.cxx
+++ b/svtools/source/misc/embedhlp.cxx
@@ -235,6 +235,7 @@ struct EmbeddedObjectRef_Impl
awt::Size aDefaultSizeForChart_In_100TH_MM;//#i103460# charts do not necessaryly have an own size within ODF files, in this case they need to use the size settings from the surrounding frame, which is made available with this member
EmbeddedObjectRef_Impl() :
+ xListener(0),
pContainer(NULL),
pGraphic(NULL),
nViewAspect(embed::Aspects::MSOLE_CONTENT),
@@ -246,6 +247,7 @@ struct EmbeddedObjectRef_Impl
EmbeddedObjectRef_Impl( const EmbeddedObjectRef_Impl& r ) :
mxObj(r.mxObj),
+ xListener(0),
aPersistName(r.aPersistName),
aMediaType(r.aMediaType),
pContainer(r.pContainer),
diff --git a/svtools/source/svrtf/svparser.cxx b/svtools/source/svrtf/svparser.cxx
index 5f2bcba..f56876e 100644
--- a/svtools/source/svrtf/svparser.cxx
+++ b/svtools/source/svrtf/svparser.cxx
@@ -42,7 +42,7 @@ struct SvParser_Impl
rtl_TextToUnicodeContext hContext;
SvParser_Impl() :
- nSaveToken(0), hConv( 0 ), hContext( (rtl_TextToUnicodeContext)1 )
+ nTokenValue(0), nToken(0), nSaveToken(0), hConv( 0 ), hContext( (rtl_TextToUnicodeContext)1 )
{
}
More information about the Libreoffice-commits
mailing list