diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-10-08 16:38:04 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-10-08 16:38:04 +0100 |
commit | ccd2240332f2e70e08f62e349176fab03297c39f (patch) | |
tree | 2565181f635d4c0bfc77dce5159098c45da71f36 /svtools | |
parent | 766ec29ce6557a83368fa1efdea009fd8f6f85dc (diff) |
CID#1079290 uninitialized member
Change-Id: Ibc75fed4b5282d3caeccac54a884ff5dde3d1910
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/contnr/fileview.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/svtools/source/contnr/fileview.cxx b/svtools/source/contnr/fileview.cxx index bf521467ba74..a03c882d8d2e 100644 --- a/svtools/source/contnr/fileview.cxx +++ b/svtools/source/contnr/fileview.cxx @@ -2557,7 +2557,9 @@ QueryDeleteDlg_Impl::QueryDeleteDlg_Impl _aYesButton ( this, SvtResId( BTN_YES ) ), _aAllButton ( this, SvtResId( BTN_ALL ) ), _aNoButton ( this, SvtResId( BTN_NO ) ), - _aCancelButton( this, SvtResId( BTN_CANCEL ) ) + _aCancelButton( this, SvtResId( BTN_CANCEL ) ), + + _eResult( QUERYDELETE_YES ) { FreeResource(); |