[Libreoffice-commits] core.git: Branch 'libreoffice-4-0' - sw/source

Andras Timar atimar at suse.com
Sun Mar 17 23:56:52 PDT 2013


 sw/source/filter/html/swhtml.cxx |    7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

New commits:
commit a588acb6952f4ecbdb405295441518a6943f9328
Author: Andras Timar <atimar at suse.com>
Date:   Sun Mar 17 15:21:04 2013 +0100

    let LibreOffice find html.stw (regression from 1b0f7ee1)
    
    Change-Id: I6ae07e61b67fa321e80605e6e3a6fcdd56012b95
    Reviewed-on: https://gerrit.libreoffice.org/2790
    Reviewed-by: Fridrich Strba <fridrich at documentfoundation.org>
    Tested-by: Fridrich Strba <fridrich at documentfoundation.org>

diff --git a/sw/source/filter/html/swhtml.cxx b/sw/source/filter/html/swhtml.cxx
index 8509ff8..fcee5a4 100644
--- a/sw/source/filter/html/swhtml.cxx
+++ b/sw/source/filter/html/swhtml.cxx
@@ -148,15 +148,14 @@ HTMLReader::HTMLReader()
 
 String HTMLReader::GetTemplateName() const
 {
-    String sTemplate(rtl::OUString("html"));
+    String sTemplate(rtl::OUString("internal"));
+    sTemplate += INET_PATH_TOKEN;
+    sTemplate.AppendAscii( TOOLS_CONSTASCII_STRINGPARAM("html") );
     String sTemplateWithoutExt( sTemplate );
     // first search for OpenDocument Writer/Web template
     sTemplate.AppendAscii( TOOLS_CONSTASCII_STRINGPARAM(".oth") );
 
-    //Added path for the common HTML template
     SvtPathOptions aPathOpt;
-    const String sCommonTemplatePath("share/template/common/internal");
-    aPathOpt.SetTemplatePath(sCommonTemplatePath);
     // OpenDocument Writer/Web template (extension .oth)
     sal_Bool bSet = aPathOpt.SearchFile( sTemplate, SvtPathOptions::PATH_TEMPLATE );
 


More information about the Libreoffice-commits mailing list