summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-07 21:22:18 +0100
committerAndras Timar <andras.timar@collabora.com>2014-04-16 17:07:14 +0200
commit32a3ece945d4f869d192eb2cf486cfd3c5b2fe66 (patch)
treef394e0853f358ec1d2d83ae5cd4b9a9697885b07 /svx
parent2c84c22708b0684b4e1616bf64daf8d9acc7b9e6 (diff)
coverity#708388 Uninitialized scalar field
Change-Id: Idaa2ec4863beb6be790022c3c66bc4a72e9bf626 (cherry picked from commit 409ebeb20d1ee4552ac21bd739ae4e25eaeb68d9) Reviewed-on: https://gerrit.libreoffice.org/8891 Tested-by: David Tardon <dtardon@redhat.com> Reviewed-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/table/tableundo.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/svx/source/table/tableundo.cxx b/svx/source/table/tableundo.cxx
index aee0012abef3..2a8aebfedf30 100644
--- a/svx/source/table/tableundo.cxx
+++ b/svx/source/table/tableundo.cxx
@@ -506,6 +506,7 @@ void TableRowUndo::getData( Data& rData )
TableStyleUndo::TableStyleUndo( const SdrTableObj& rTableObj )
: SdrUndoAction( *rTableObj.GetModel() )
, mxObjRef( const_cast< sdr::table::SdrTableObj*>( &rTableObj ) )
+ , mbHasRedoData(false)
{
getData( maUndoData );
}