]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/txtstrm.cpp
don't inherit font from the parent by default
[wxWidgets.git] / src / common / txtstrm.cpp
index 55a7ac35804f1f72fdd2eef494e5c94666e2255b..27b0b6c6edd50ef673de1c4b12029fb200ca4d79 100644 (file)
@@ -9,7 +9,7 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma implementation "txtstrm.h"
 #endif
 
 #pragma implementation "txtstrm.h"
 #endif
 
@@ -97,10 +97,9 @@ wxChar wxTextInputStream::NextChar()
 
 wxChar wxTextInputStream::NextNonSeparators()
 {
 
 wxChar wxTextInputStream::NextNonSeparators()
 {
-    wxChar c = (wxChar) 0;
     for (;;)
     {
     for (;;)
     {
-        c = NextChar();
+        wxChar c = NextChar();
         if (c == wxEOT) return (wxChar) 0;
 
         if (c != wxT('\n') &&
         if (c == wxEOT) return (wxChar) 0;
 
         if (c != wxT('\n') &&