summaryrefslogtreecommitdiff
path: root/include/tools/pathutils.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/tools/pathutils.hxx')
-rw-r--r--include/tools/pathutils.hxx12
1 files changed, 5 insertions, 7 deletions
diff --git a/include/tools/pathutils.hxx b/include/tools/pathutils.hxx
index 3fa5cc0d1e9d..045ec4b96bbe 100644
--- a/include/tools/pathutils.hxx
+++ b/include/tools/pathutils.hxx
@@ -29,15 +29,15 @@
// The compiled code is not part of the tl dynamic library, but is delivered as
// pathutils-obj and pathutils-slo objects (it is linked into special
// executables and dynamic libraries that do not link against OOo libraries):
-namespace tools {
-
+namespace tools
+{
/** Determine the filename part of a path.
@param path
A non-NULL pointer to a null-terminated path.
@return
A pointer to the trailing filename part of the given path.
*/
-WCHAR * filename(WCHAR * path);
+WCHAR* filename(WCHAR* path);
/** Concatenate two paths.
@@ -62,10 +62,8 @@ WCHAR * filename(WCHAR * path);
A pointer to the terminating null character of the concatenation, or NULL
if a failure occurred.
*/
-WCHAR * buildPath(
- WCHAR * path, WCHAR const * frontBegin, WCHAR const * frontEnd,
- WCHAR const * backBegin, std::size_t backLength);
-
+WCHAR* buildPath(WCHAR* path, WCHAR const* frontBegin, WCHAR const* frontEnd,
+ WCHAR const* backBegin, std::size_t backLength);
}
#endif