Author: carnold
Date: Fri Feb 15 08:13:11 2008
New Revision: 628099

URL: http://svn.apache.org/viewvc?rev=628099&view=rev
Log:
LOGCXX-68: Remove tabs and inconsistent EOLs

Modified:
    logging/log4cxx/trunk/src/main/cpp/file.cpp
    logging/log4cxx/trunk/src/main/include/log4cxx/helpers/fileoutputstream.h
    logging/log4cxx/trunk/src/main/include/log4cxx/helpers/objectptr.h
    logging/log4cxx/trunk/src/main/include/log4cxx/helpers/socketimpl.h
    logging/log4cxx/trunk/src/main/include/log4cxx/helpers/threadlocal.h
    logging/log4cxx/trunk/src/test/cpp/util/transformer.cpp

Modified: logging/log4cxx/trunk/src/main/cpp/file.cpp
URL: 
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/cpp/file.cpp?rev=628099&r1=628098&r2=628099&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/cpp/file.cpp (original)
+++ logging/log4cxx/trunk/src/main/cpp/file.cpp Fri Feb 15 08:13:11 2008
@@ -34,7 +34,7 @@
 static LogString decodeLS(const S* src) {
     LogString dst;
     if (src != 0) {
-       Transcoder::decode(src, dst);
+      Transcoder::decode(src, dst);
     }
     return dst;
 }
@@ -144,9 +144,9 @@
 
 char* File::convertBackSlashes(char* src) {
   for(char* c = src; *c != 0; c++) {
-       if(*c == '\\') {
-               *c = '/';
-       }
+   if(*c == '\\') {
+      *c = '/';
+   }
   }
   return src;
 }
@@ -203,7 +203,7 @@
             if (entry.name != NULL) {
                LogString filename;
                if(style == APR_FILEPATH_ENCODING_UTF8) {
-                          Transcoder::decodeUTF8(entry.name, filename);
+                 Transcoder::decodeUTF8(entry.name, filename);
                } else {
                    Transcoder::decode(entry.name, filename);
                }

Modified: 
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/fileoutputstream.h
URL: 
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/helpers/fileoutputstream.h?rev=628099&r1=628098&r2=628099&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/helpers/fileoutputstream.h 
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/helpers/fileoutputstream.h 
Fri Feb 15 08:13:11 2008
@@ -56,7 +56,7 @@
                   FileOutputStream(const FileOutputStream&);
                   FileOutputStream& operator=(const FileOutputStream&);
                   static apr_file_t* open(const LogString& fn, bool append, 
-                       log4cxx::helpers::Pool& p);
+         log4cxx::helpers::Pool& p);
           };
 
           LOG4CXX_PTR_DEF(FileOutputStream);

Modified: logging/log4cxx/trunk/src/main/include/log4cxx/helpers/objectptr.h
URL: 
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/helpers/objectptr.h?rev=628099&r1=628098&r2=628099&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/helpers/objectptr.h 
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/helpers/objectptr.h Fri Feb 
15 08:13:11 2008
@@ -168,11 +168,11 @@
             }
             return 0;
          }
-                T* exchange(const T* newValue) {
+       T* exchange(const T* newValue) {
              return static_cast<T*>(ObjectPtrBase::exchange(
                  reinterpret_cast<void**>(&p), 
                  const_cast<T*>(newValue)));
-                }
+       }
 
         };
 

Modified: logging/log4cxx/trunk/src/main/include/log4cxx/helpers/socketimpl.h
URL: 
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/helpers/socketimpl.h?rev=628099&r1=628098&r2=628099&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/helpers/socketimpl.h 
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/helpers/socketimpl.h Fri Feb 
15 08:13:11 2008
@@ -26,7 +26,7 @@
 
 
 extern "C" {
-       struct apr_socket_t;
+   struct apr_socket_t;
 }
 
 namespace log4cxx

Modified: logging/log4cxx/trunk/src/main/include/log4cxx/helpers/threadlocal.h
URL: 
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/helpers/threadlocal.h?rev=628099&r1=628098&r2=628099&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/helpers/threadlocal.h 
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/helpers/threadlocal.h Fri 
Feb 15 08:13:11 2008
@@ -76,7 +76,7 @@
                      
                      static apr_threadkey_t* create(Pool& p);
 
-                                        Pool p;
+                Pool p;
                      apr_threadkey_t* key;
                 };
         } // namespace helpers

Modified: logging/log4cxx/trunk/src/test/cpp/util/transformer.cpp
URL: 
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/test/cpp/util/transformer.cpp?rev=628099&r1=628098&r2=628099&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/test/cpp/util/transformer.cpp (original)
+++ logging/log4cxx/trunk/src/test/cpp/util/transformer.cpp Fri Feb 15 08:13:11 
2008
@@ -126,7 +126,7 @@
     if (patterns.size() == 0) {
         copyFile(in, out);
     } else {
-       Pool p;
+   Pool p;
         apr_pool_t* pool = p.getAPRPool();
  
         //


Reply via email to