Author: buzzdee
Date: Fri May 30 14:32:21 2014
New Revision: 37926

URL: http://svn.gna.org/viewcvs/gnustep?rev=37926&view=rev
Log:
        * Palettes/2Controls/GormFormAttributesInspector.m
          fix some format string warnings

Modified:
    apps/gorm/trunk/ChangeLog
    apps/gorm/trunk/Palettes/2Controls/GormFormAttributesInspector.m

Modified: apps/gorm/trunk/ChangeLog
URL: 
http://svn.gna.org/viewcvs/gnustep/apps/gorm/trunk/ChangeLog?rev=37926&r1=37925&r2=37926&view=diff
==============================================================================
--- apps/gorm/trunk/ChangeLog   (original)
+++ apps/gorm/trunk/ChangeLog   Fri May 30 14:32:21 2014
@@ -1,6 +1,8 @@
 2014-05-30 Sebastian Reitenbach <sebas...@l00-bugdead-prods.de>
        * Palettes/2Controls/GormColorWellAttributesInspector.h
          fix typo in header guard
+       * Palettes/2Controls/GormFormAttributesInspector.m
+         fix some format string warnings
 
 2014-05-28 Riccardo Mottola <r...@gnu.org>
 

Modified: apps/gorm/trunk/Palettes/2Controls/GormFormAttributesInspector.m
URL: 
http://svn.gna.org/viewcvs/gnustep/apps/gorm/trunk/Palettes/2Controls/GormFormAttributesInspector.m?rev=37926&r1=37925&r2=37926&view=diff
==============================================================================
--- apps/gorm/trunk/Palettes/2Controls/GormFormAttributesInspector.m    
(original)
+++ apps/gorm/trunk/Palettes/2Controls/GormFormAttributesInspector.m    Fri May 
30 14:32:21 2014
@@ -181,7 +181,7 @@
                }
              else
                {
-                 [object addEntry: [NSString stringWithFormat: @"Field (%i)", 
rows]];
+                 [object addEntry: [NSString stringWithFormat: @"Field (%ld)", 
(long)rows]];
                }
            }
          cell.height = (rect.size.height + inter.height) / fields - 
inter.height;
@@ -199,7 +199,7 @@
 
       while(delta > 0)
        {
-         [object addEntry: [NSString stringWithFormat: @"Field (%i)", rows]];
+         [object addEntry: [NSString stringWithFormat: @"Field (%ld)", 
(long)rows]];
          delta--;
          rows++;
        }


_______________________________________________
Gnustep-cvs mailing list
Gnustep-cvs@gna.org
https://mail.gna.org/listinfo/gnustep-cvs

Reply via email to