]> git.lyx.org Git - lyx.git/blobdiff - src/support/docstream.cpp
Use more informative descriptions fro Springer layouts
[lyx.git] / src / support / docstream.cpp
index de5a6df035757dbe5480602e0c69c2c4809d7679..f8964cae6022a032b86b92f47ce0f03e1bb3b491 100644 (file)
@@ -32,15 +32,15 @@ std::locale::id numpunct<lyx::char_type>::id;
 namespace std {
 // Implementation of numpunct<lyx::char_type> defined in numpunct_lyx_char_type.h
 typedef basic_string<lyx::char_type> string_type;
-       
+
 string_type numpunct<lyx::char_type>::truename() const
-{ 
-       return lyx::from_ascii(numpunct<char>::truename()); 
+{
+       return lyx::from_ascii(numpunct<char>::truename());
 }
-       
+
 string_type numpunct<lyx::char_type>::falsename() const
-{ 
-       return lyx::from_ascii(numpunct<char>::falsename()); 
+{
+       return lyx::from_ascii(numpunct<char>::falsename());
 }
 
 } // namespace std
@@ -168,16 +168,16 @@ protected:
                        fprintf(stderr, "\nStopped at: 0x%04x\n", c);
                        fputs("Unconverted input:", stderr);
                        for (intern_type const * i = from_next + 1; i < from_end; ++i) {
-                               unsigned int const c = *i;
-                               fprintf(stderr, " 0x%04x", c);
+                               unsigned int const cc = *i;
+                               fprintf(stderr, " 0x%04x", cc);
                        }
                        fputs("\nConverted output:", stderr);
                        for (extern_type const * i = to; i < to_next; ++i) {
                                // extern_type may be signed, avoid output of
                                // something like 0xffffffc2
-                               unsigned int const c =
+                               unsigned int const cc =
                                        *reinterpret_cast<unsigned char const *>(i);
-                               fprintf(stderr, " 0x%02x", c);
+                               fprintf(stderr, " 0x%02x", cc);
                        }
                        fputc('\n', stderr);
                        fflush(stderr);
@@ -222,14 +222,14 @@ protected:
                        fprintf(stderr, "\nStopped at: 0x%02x\n", c);
                        fputs("Unconverted input:", stderr);
                        for (extern_type const * i = from_next + 1; i < from_end; ++i) {
-                               unsigned int const c =
+                               unsigned int const cc =
                                        *reinterpret_cast<unsigned char const *>(i);
-                               fprintf(stderr, " 0x%02x", c);
+                               fprintf(stderr, " 0x%02x", cc);
                        }
                        fputs("\nConverted output:", stderr);
                        for (intern_type const * i = to; i < to_next; ++i) {
-                               unsigned int const c = *i;
-                               fprintf(stderr, " 0x%02x", c);
+                               unsigned int const cc = *i;
+                               fprintf(stderr, " 0x%02x", cc);
                        }
                        fputc('\n', stderr);
                        fflush(stderr);
@@ -281,7 +281,7 @@ private:
                                inbytesleft, to, outbytesleft);
                if (converted == (size_t)(-1)) {
                        switch(errno) {
-                       case 0: 
+                       case 0:
                                // As strange as it may seem, this
                                // does happen on windows when parsing
                                // comments with accented chars in
@@ -307,7 +307,7 @@ private:
        string encoding_;
 };
 
-} // namespace anon
+} // namespace
 
 
 namespace lyx {
@@ -447,7 +447,7 @@ odocstream & operator<<(odocstream & os, char c)
 }
 #endif
 
-}
+} // namespace lyx
 
 
 #if ! defined(USE_WCHAR_T) && defined(__GNUC__)