summaryrefslogtreecommitdiffstats
path: root/sal/rtl/source/logfile.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sal/rtl/source/logfile.cxx')
-rw-r--r--sal/rtl/source/logfile.cxx11
1 files changed, 6 insertions, 5 deletions
diff --git a/sal/rtl/source/logfile.cxx b/sal/rtl/source/logfile.cxx
index 56d5e5d5d68e..0e0f5e4b4063 100644
--- a/sal/rtl/source/logfile.cxx
+++ b/sal/rtl/source/logfile.cxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -34,16 +35,12 @@
#include <rtl/logfile.h>
#include <osl/process.h>
-#ifndef _OSL_FILE_H_
#include <osl/time.h>
-#endif
#include <osl/time.h>
#include <osl/mutex.hxx>
#include <rtl/bootstrap.h>
#include <rtl/ustring.hxx>
-#ifndef _RTL_STRBUF_HXX_
#include <rtl/ustrbuf.hxx>
-#endif
#include <rtl/alloc.h>
#include "osl/thread.h"
@@ -53,10 +50,12 @@
#define vsnprintf _vsnprintf
#endif
-using namespace rtl;
using namespace osl;
using namespace std;
+using ::rtl::OUString;
+using ::rtl::OUStringBuffer;
+
namespace {
static oslFileHandle g_aFile = 0;
@@ -252,3 +251,5 @@ extern "C" sal_Bool SAL_CALL rtl_logfile_hasLogFile( void ) {
init();
return g_buffer != 0;
}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */