summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-01-29 23:08:16 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-01-29 23:36:53 -0600
commit05bd05a65ffd8247595ee95758d9e3132d9fa677 (patch)
tree7d9a997b243e83682a2453b6f10182a2e0f8b936 /sd
parentb77bb8dd173f71d3148d8237e71a5dbc3340765f (diff)
coverity#1000866 : Uninitialized scalar field
Change-Id: I0b460fb2964d363d0d0ae8f95cdd590eadd2bff3
Diffstat (limited to 'sd')
-rw-r--r--sd/source/core/PageListWatcher.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/sd/source/core/PageListWatcher.cxx b/sd/source/core/PageListWatcher.cxx
index cd4f9ffe62bb..a154da1bce20 100644
--- a/sd/source/core/PageListWatcher.cxx
+++ b/sd/source/core/PageListWatcher.cxx
@@ -69,9 +69,10 @@ void ImpPageListWatcher::ImpRecreateSortedPageListOnDemand()
}
ImpPageListWatcher::ImpPageListWatcher(const SdrModel& rModel)
-: mrModel(rModel),
- mpHandoutPage(0L),
- mbPageListValid(sal_False)
+ : mrModel(rModel)
+ , mpHandoutPage(0L)
+ , mbPageListValid(sal_False)
+ , mnVisiblePageCount(0)
{
}