summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorKohei Yoshida <kyoshida@novell.com>2010-12-21 22:32:39 -0500
committerKohei Yoshida <kyoshida@novell.com>2010-12-21 22:32:39 -0500
commit0acb660da9251c409582661df75f634670bb57e1 (patch)
tree4c7cadacf8a8ae5cd026533324fc7ec30dbe8048 /sc
parent764b5b29fb44e3f0d0941f77ed9b3d21b51f41b3 (diff)
cppcheck: initialize a pointer data member in ctor.
Diffstat (limited to 'sc')
-rw-r--r--sc/source/filter/html/htmlpars.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/source/filter/html/htmlpars.cxx b/sc/source/filter/html/htmlpars.cxx
index 2686f1f9a..b6aac9b67 100644
--- a/sc/source/filter/html/htmlpars.cxx
+++ b/sc/source/filter/html/htmlpars.cxx
@@ -1879,7 +1879,8 @@ private:
// ----------------------------------------------------------------------------
ScHTMLTableMap::ScHTMLTableMap( ScHTMLTable& rParentTable ) :
- mrParentTable( rParentTable )
+ mrParentTable(rParentTable),
+ mpCurrTable(NULL)
{
}