]> git.saurik.com Git - wxWidgets.git/commitdiff
Added more '#pragma implementation' for gcc.
authorStefan Neis <Stefan.Neis@t-online.de>
Sun, 23 Jan 2000 15:39:55 +0000 (15:39 +0000)
committerStefan Neis <Stefan.Neis@t-online.de>
Sun, 23 Jan 2000 15:39:55 +0000 (15:39 +0000)
Replaced wxString[0u] by wxString[(size_t) 0]: size_t is signed for EMX,
        so explicitly using '0u' causes problems.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5608 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/os2/fontutil.cpp
src/os2/iniconf.cpp
src/os2/menu.cpp
src/os2/mimetype.cpp

index 5f135b032739eabf182143336363efbf312b16eb..a3444c57653308b538ce74976013ac92bd6ddb37 100644 (file)
 // headers
 // ----------------------------------------------------------------------------
 
+#ifdef __GNUG__
+    #pragma implementation "fontutil.h"
+#endif
+
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
index 3b49835c8a073b3f74b2dcb099c5daf2319d7090..68a8bab6aed41a3a2fd5c7561f6263e2e311123b 100644 (file)
@@ -63,7 +63,7 @@ wxIniConfig::wxIniConfig(const wxString& strAppName,
 
     // append the extension if none given and it's not an absolute file name
     // (otherwise we assume that they know what they're doing)
-    if ( !wxIsPathSeparator(m_strLocalFilename[0u]) &&
+    if ( !wxIsPathSeparator(m_strLocalFilename[(size_t) 0]) &&
         m_strLocalFilename.Find('.') == wxNOT_FOUND )
     {
         m_strLocalFilename << ".ini";
@@ -88,7 +88,7 @@ void wxIniConfig::SetPath(const wxString& strPath)
   if ( strPath.IsEmpty() ) {
     // nothing
   }
-  else if ( strPath[0u] == wxCONFIG_PATH_SEPARATOR ) {
+  else if ( strPath[(size_t) 0] == wxCONFIG_PATH_SEPARATOR ) {
     // absolute path
     wxSplitPath(aParts, strPath);
   }
@@ -107,7 +107,7 @@ void wxIniConfig::SetPath(const wxString& strPath)
   }
   else {
     // translate
-    m_strGroup = aParts[0u];
+    m_strGroup = aParts[(size_t) 0];
     for ( size_t nPart = 1; nPart < nPartsCount; nPart++ ) {
       if ( nPart > 1 )
         m_strPath << PATH_SEP_REPLACE;
index 129f2e8d910e5565d0b162c99f6ae3d6d40d18c5..442525a8f6c3f1849fc684b282b6d2cfc1f9458f 100644 (file)
@@ -9,6 +9,10 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
+#ifdef __GNUG__
+    #pragma implementation "menu.h"
+#endif
+
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
index bee950fe6d2ac3caa39dc2997f68ed69feb91929..28ba45db1fb581d316b7a0b4b224a26050ee1506 100644 (file)
@@ -318,7 +318,7 @@ wxMimeTypesManagerImpl::GetFileTypeFromExtension(const wxString& ext)
 {
     // add the leading point if necessary
     wxString str;
-    if ( ext[0u] != wxT('.') ) {
+    if ( ext[(size_t) 0] != wxT('.') ) {
         str = wxT('.');
     }
     str << ext;