diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2010-12-21 22:32:39 -0500 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2010-12-21 22:32:39 -0500 |
commit | 0acb660da9251c409582661df75f634670bb57e1 (patch) | |
tree | 4c7cadacf8a8ae5cd026533324fc7ec30dbe8048 /sc | |
parent | 764b5b29fb44e3f0d0941f77ed9b3d21b51f41b3 (diff) |
cppcheck: initialize a pointer data member in ctor.
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/html/htmlpars.cxx | 3 |
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) { } |