diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-02 10:12:30 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-02 14:48:51 +0100 |
commit | a165aa38d9009bf46e203bbdfbac3b7cd8f71b4c (patch) | |
tree | e8181a56f95299eee0420c3c080694abbd301286 /sd/source | |
parent | 62f2b370e5ba4e8a70486d4bc9fa3871575ef192 (diff) |
coverity#1242906 Unused value
Change-Id: I7a282e5adc60e4b123469f46fb480805377626b4
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/filter/html/pubdlg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/filter/html/pubdlg.cxx b/sd/source/filter/html/pubdlg.cxx index 3383f4c4d498..6007a359774e 100644 --- a/sd/source/filter/html/pubdlg.cxx +++ b/sd/source/filter/html/pubdlg.cxx @@ -681,7 +681,7 @@ void SdPublishingDlg::GetParameterSequence( Sequence< PropertyValue >& rParams ) HtmlPublishMode ePublishMode; if (pPage2_Frames->IsChecked()) ePublishMode = PUBLISH_FRAMES; - if (pPage2_SingleDocument->IsChecked()) + else if (pPage2_SingleDocument->IsChecked()) ePublishMode = PUBLISH_SINGLE_DOCUMENT; else if (pPage2_Kiosk->IsChecked()) ePublishMode = PUBLISH_KIOSK; |