summaryrefslogtreecommitdiff
path: root/unotest
diff options
context:
space:
mode:
authorMichael Stahl <Michael.Stahl@cib.de>2018-06-22 18:34:01 +0200
committerMichael Stahl <Michael.Stahl@cib.de>2018-06-29 12:59:30 +0200
commite8b1dab67fd041103546e5427dd75b40ddb0431a (patch)
treea1109aeaf7f30a59dab2c64c4322bd7caabdffc1 /unotest
parent0a182c2841fa48029bfd66814f2fa4cb59e907d3 (diff)
test: invoke ODF validator with custom schemas
This requires a new validator jar for the -m flag to specify MathML schema. Change-Id: If99cf70f386a16a90ba676f8f5ff65a537c9ce56 Reviewed-on: https://gerrit.libreoffice.org/56487 Tested-by: Jenkins Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
Diffstat (limited to 'unotest')
-rw-r--r--unotest/source/cpp/directories.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/unotest/source/cpp/directories.cxx b/unotest/source/cpp/directories.cxx
index 3cda732c0413..6635fafa030f 100644
--- a/unotest/source/cpp/directories.cxx
+++ b/unotest/source/cpp/directories.cxx
@@ -41,22 +41,22 @@ test::Directories::Directories() {
m_aWorkdirRootURL = getFileURLFromSystemPath(m_aWorkdirRootPath);
}
-OUString test::Directories::getURLFromSrc( const OUString& rPath )
+OUString test::Directories::getURLFromSrc(const OUString& rPath) const
{
return m_aSrcRootURL + rPath;
}
-OUString test::Directories::getPathFromSrc(const OUString& rPath)
+OUString test::Directories::getPathFromSrc(const OUString& rPath) const
{
return m_aSrcRootPath + rPath;
}
-OUString test::Directories::getURLFromWorkdir( const OUString& rPath )
+OUString test::Directories::getURLFromWorkdir(const OUString& rPath) const
{
return m_aWorkdirRootURL + rPath;
}
-OUString test::Directories::getPathFromWorkdir( const OUString& rPath )
+OUString test::Directories::getPathFromWorkdir(const OUString& rPath) const
{
return m_aWorkdirRootPath + rPath;
}