]> git.lyx.org Git - features.git/commitdiff
Fix gcc warning.
authorAbdelrazak Younes <younes@lyx.org>
Mon, 2 Nov 2009 15:15:47 +0000 (15:15 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Mon, 2 Nov 2009 15:15:47 +0000 (15:15 +0000)
Richard, please check this out!

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31829 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetExternal.cpp

index 9a8e660a0468ccbd0ce67ef1a9518c5f4e74a0f2..924afe9e93c2442caaeac241450fd5255fabf410 100644 (file)
@@ -716,6 +716,9 @@ void InsetExternal::validate(LaTeXFeatures & features) const
        case OutputParams::XML:
                format = "DocBook";
                break;
+       case OutputParams::HTML:
+               format = "html";
+               break;
        }
        external::Template::Formats::const_iterator cit =
                et.formats.find(format);