From: Luca Padovani Date: Fri, 4 Apr 2003 10:31:20 +0000 (+0000) Subject: * added missing / in path for default stylesheets X-Git-Tag: before_refactoring~51 X-Git-Url: http://matita.cs.unibo.it/gitweb/?p=helm.git;a=commitdiff_plain;h=afd46825cc4b77b54cea1c4e93e842fdea8cbc80 * added missing / in path for default stylesheets --- diff --git a/helm/DEVEL/mathml_editor/src/AMathMLFactory.cc b/helm/DEVEL/mathml_editor/src/AMathMLFactory.cc index 8f8b21ce6..b9826352b 100644 --- a/helm/DEVEL/mathml_editor/src/AMathMLFactory.cc +++ b/helm/DEVEL/mathml_editor/src/AMathMLFactory.cc @@ -31,12 +31,12 @@ std::string AMathMLFactory::getDefaultMathMLStylesheetPath() { - return PKGDATADIR"tml-mmlp.xsl"; + return PKGDATADIR"/tml-mmlp.xsl"; } std::string AMathMLFactory::getDefaultTeXStylesheetPath() { - return PKGDATADIR"tml-tex.xsl"; + return PKGDATADIR"/tml-tex.xsl"; }