gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash/gui gtk.cpp


From: Martin Guy
Subject: [Gnash-commit] gnash/gui gtk.cpp
Date: Sat, 03 Mar 2007 13:17:40 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Martin Guy <martinwguy> 07/03/03 13:17:40

Modified files:
        gui            : gtk.cpp 

Log message:
        Fix compiler warning: int->unsigned

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/gui/gtk.cpp?cvsroot=gnash&r1=1.70&r2=1.71

Patches:
Index: gtk.cpp
===================================================================
RCS file: /sources/gnash/gnash/gui/gtk.cpp,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -b -r1.70 -r1.71
--- gtk.cpp     28 Feb 2007 17:25:25 -0000      1.70
+++ gtk.cpp     3 Mar 2007 13:17:39 -0000       1.71
@@ -17,7 +17,7 @@
 // 
 //
 
-/* $Id: gtk.cpp,v 1.70 2007/02/28 17:25:25 udog Exp $ */
+/* $Id: gtk.cpp,v 1.71 2007/03/03 13:17:39 martinwguy Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -245,7 +245,7 @@
 {
   if ( _drawbounds.size() == 0 ) return; // nothing to do..
 
-       for (int bno=0; bno < _drawbounds.size(); bno++) {
+       for (unsigned bno=0; bno < _drawbounds.size(); bno++) {
        
                geometry::Range2d<int>& bounds = _drawbounds[bno];
                




reply via email to

[Prev in Thread] Current Thread [Next in Thread]