]> git.saurik.com Git - wxWidgets.git/commitdiff
getting rid of warnings
authorStefan Csomor <csomor@advancedconcepts.ch>
Sat, 24 Aug 2002 18:34:24 +0000 (18:34 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sat, 24 Aug 2002 18:34:24 +0000 (18:34 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16740 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/filename.cpp
src/common/gdicmn.cpp
src/common/timercmn.cpp

index 0e3653a6a3899fb2ca94aee12dc6d5bca4e611cb..155a9ecdd463c5d90a631852629801d3e20de05d 100644 (file)
@@ -1766,7 +1766,7 @@ static void MacEnsureDefaultExtensionsLoaded()
     } ;
     // we could load the pc exchange prefs here too
 
-    for ( int i = 0 ; i < WXSIZEOF( defaults ) ; ++i )
+    for ( size_t i = 0 ; i < WXSIZEOF( defaults ) ; ++i )
     {
       gMacDefaultExtensions.Add( defaults[i] ) ;
     }
index d0deba6056cd6348520ad4be076322a30c7c035a..48925f342939f9bc11510704a7d7fc266c844262 100644 (file)
@@ -456,7 +456,6 @@ void wxInitializeStockObjects ()
 #if defined(__WXMAC__)
     int sizeFont = 12;
 
-    FontFamilyID fontId ;
     Str255 fontName ;
     SInt16 fontSize ;
     Style fontStyle ;
index 93b58499e5113d3aea23ab29c414db5db86c1bcd..ed6e8c00712af223cc91833a1346602818e59861 100644 (file)
@@ -337,7 +337,6 @@ wxLongLong wxGetLocalTimeMillis()
     return (val + tp.millitm);
 #elif defined(__WXMAC__)
     
-    unsigned long secs ;
     UInt64 gMilliAtStart = 0 ;
     Nanoseconds upTime = AbsoluteToNanoseconds( UpTime() ) ;
     if ( gMilliAtStart == 0 )
@@ -350,7 +349,7 @@ wxLongLong wxGetLocalTimeMillis()
     UInt64 millival = gMilliAtStart ;
     millival += upTime.lo / 1000 ;
     millival += ( ( (UInt64) upTime.hi ) << 32 ) / 1000 ;
-    return millival ;
+    val = millival ;
 #else // no gettimeofday() nor ftime()
     // We use wxGetLocalTime() to get the seconds since
     // 00:00:00 Jan 1st 1970 and then whatever is available