Kaydet (Commit) 52b25807 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1202918 Uninitialized scalar field

Change-Id: I4037b948b718122953c7127b1f00bd46e3e891d2
üst 2436eb53
...@@ -234,8 +234,8 @@ public: ...@@ -234,8 +234,8 @@ public:
inline void SetInitDBFields(sal_Bool b) { bInitDBFields = b; } inline void SetInitDBFields(sal_Bool b) { bInitDBFields = b; }
/// Print / Save mail merge one by one or all together. /// Print / Save mail merge one by one or all together.
inline sal_Bool IsSingleJobs() const { return bSingleJobs; } sal_Bool IsSingleJobs() const { return bSingleJobs; }
inline void SetSingleJobs(sal_Bool b) { bSingleJobs = b; } void SetSingleJobs(sal_Bool b) { bSingleJobs = b; }
/// Mailing: Set email data. /// Mailing: Set email data.
inline void SetEMailColumn(const OUString& sColName) { sEMailAddrFld = sColName; } inline void SetEMailColumn(const OUString& sColName) { sEMailAddrFld = sColName; }
......
...@@ -703,13 +703,15 @@ sal_Bool SwNewDBMgr::GetColumnNames(ListBox* pListBox, ...@@ -703,13 +703,15 @@ sal_Bool SwNewDBMgr::GetColumnNames(ListBox* pListBox,
/*-------------------------------------------------------------------- /*--------------------------------------------------------------------
Description: CTOR Description: CTOR
--------------------------------------------------------------------*/ --------------------------------------------------------------------*/
SwNewDBMgr::SwNewDBMgr() : SwNewDBMgr::SwNewDBMgr()
bInitDBFields(sal_False), : bCancel(false)
bInMerge(sal_False), , bInitDBFields(false)
bMergeSilent(sal_False), , bSingleJobs(false)
bMergeLock(sal_False), , bInMerge(false)
pImpl(new SwNewDBMgr_Impl(*this)), , bMergeSilent(false)
pMergeEvtSrc(NULL) , bMergeLock(false)
, pImpl(new SwNewDBMgr_Impl(*this))
, pMergeEvtSrc(NULL)
{ {
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment