summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2012-01-04 14:19:14 +0200
committerTor Lillqvist <tlillqvist@suse.com>2012-01-04 15:33:46 +0200
commit0a5821652fdc57bde39d6b0b6472fc0b4b42cb1a (patch)
tree488445ada998ebfc8da400acb0cc7791db8c9a7e
parentd37157372db95ee64afdc6e74c536e28fc5bbd6e (diff)
Remove bogus one column indentation
-rw-r--r--sal/osl/unx/uunxapi.hxx104
1 files changed, 51 insertions, 53 deletions
diff --git a/sal/osl/unx/uunxapi.hxx b/sal/osl/unx/uunxapi.hxx
index 44ad6a0df4b1..8e47cfc482e7 100644
--- a/sal/osl/unx/uunxapi.hxx
+++ b/sal/osl/unx/uunxapi.hxx
@@ -26,76 +26,74 @@
*
************************************************************************/
- #ifndef _OSL_UUNXAPI_HXX_
- #define _OSL_UUNXAPI_HXX_
+#ifndef _OSL_UUNXAPI_HXX_
+#define _OSL_UUNXAPI_HXX_
- #ifndef _OSL_UUNXAPI_H_
- #include "uunxapi.h"
- #endif
+#ifndef _OSL_UUNXAPI_H_
+#include "uunxapi.h"
+#endif
- #ifndef _RTL_USTRING_HXX_
- #include <rtl/ustring.hxx>
- #endif
+#ifndef _RTL_USTRING_HXX_
+#include <rtl/ustring.hxx>
+#endif
- namespace osl
- {
+namespace osl
+{
- /***********************************
- osl::access
-
- @see access
- **********************************/
-
- inline int access(const rtl::OUString& ustrPath, int mode)
- {
- return access_u(ustrPath.pData, mode);
- }
-
- /***********************************
- osl::realpath
-
- @descr
- The return value differs from the
- realpath function
-
- @returns sal_True on success else
- sal_False
+ /***********************************
+ osl::access
- @see realpath
- **********************************/
+ @see access
+ **********************************/
- inline sal_Bool realpath(
- const rtl::OUString& ustrFileName,
- rtl::OUString& ustrResolvedName)
+ inline int access(const rtl::OUString& ustrPath, int mode)
{
- return realpath_u(ustrFileName.pData, &ustrResolvedName.pData);
+ return access_u(ustrPath.pData, mode);
}
+ /***********************************
+ osl::realpath
+
+ @descr
+ The return value differs from the
+ realpath function
- /***********************************
- osl::lstat
+ @returns sal_True on success else
+ sal_False
- @see lstat
- **********************************/
+ @see realpath
+ **********************************/
+
+ inline sal_Bool realpath(
+ const rtl::OUString& ustrFileName,
+ rtl::OUString& ustrResolvedName)
+ {
+ return realpath_u(ustrFileName.pData, &ustrResolvedName.pData);
+ }
- inline int lstat(const rtl::OUString& ustrPath, struct stat& buf)
- {
- return lstat_u(ustrPath.pData, &buf);
- }
/***********************************
- osl::mkdir
- @see mkdir
- **********************************/
- inline int mkdir(const rtl::OUString& aPath, mode_t aMode)
- {
- return mkdir_u(aPath.pData, aMode);
- }
+ osl::lstat
+
+ @see lstat
+ **********************************/
- } // end namespace osl
+ inline int lstat(const rtl::OUString& ustrPath, struct stat& buf)
+ {
+ return lstat_u(ustrPath.pData, &buf);
+ }
+ /***********************************
+ osl::mkdir
+ @see mkdir
+ **********************************/
+ inline int mkdir(const rtl::OUString& aPath, mode_t aMode)
+ {
+ return mkdir_u(aPath.pData, aMode);
+ }
- #endif /* _OSL_UUNXAPI_HXX_ */
+} // end namespace osl
+#endif /* _OSL_UUNXAPI_HXX_ */
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */