summaryrefslogtreecommitdiff
path: root/unotest/source
diff options
context:
space:
mode:
Diffstat (limited to 'unotest/source')
-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;
}