sd/source/filter/html/pubdlg.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7da08675ed346e7c34dc0cb9cab6741f38343f43
Author: Caolán McNamara <caol...@redhat.com>
Date:   Thu Oct 2 10:12:30 2014 +0100

    coverity#1242906 Unused value
    
    Change-Id: I7a282e5adc60e4b123469f46fb480805377626b4
    (cherry picked from commit a165aa38d9009bf46e203bbdfbac3b7cd8f71b4c)
    Reviewed-on: https://gerrit.libreoffice.org/11764
    Reviewed-by: David Tardon <dtar...@redhat.com>
    Tested-by: David Tardon <dtar...@redhat.com>

diff --git a/sd/source/filter/html/pubdlg.cxx b/sd/source/filter/html/pubdlg.cxx
index 1407699..52275cc 100644
--- a/sd/source/filter/html/pubdlg.cxx
+++ b/sd/source/filter/html/pubdlg.cxx
@@ -748,7 +748,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;
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to