pingus-cvs
[Top][All Lists]
Advanced

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

[Pingus-CVS] r3179 - in trunk/pingus: . src/editor


From: jsalmon3
Subject: [Pingus-CVS] r3179 - in trunk/pingus: . src/editor
Date: Tue, 18 Sep 2007 18:12:26 +0200

Author: jsalmon3
Date: 2007-09-18 18:12:13 +0200 (Tue, 18 Sep 2007)
New Revision: 3179

Modified:
   trunk/pingus/pingus.vcproj
   trunk/pingus/src/editor/combobox.cpp
Log:
Fixed warning

Modified: trunk/pingus/pingus.vcproj
===================================================================
--- trunk/pingus/pingus.vcproj  2007-09-18 16:03:52 UTC (rev 3178)
+++ trunk/pingus/pingus.vcproj  2007-09-18 16:12:13 UTC (rev 3179)
@@ -1314,30 +1314,40 @@
                                        >
                                </File>
                                <File
-                                       
RelativePath=".\src\editor\file_list.cpp"
+                                       
RelativePath=".\src\editor\file_dialog.cpp"
                                        >
+                                       <FileConfiguration
+                                               Name="Debug|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       
ObjectFile="$(IntDir)\$(InputName)1.obj"
+                                                       
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
+                                               />
+                                       </FileConfiguration>
+                                       <FileConfiguration
+                                               Name="Release|Win32"
+                                               >
+                                               <Tool
+                                                       Name="VCCLCompilerTool"
+                                                       
ObjectFile="$(IntDir)\$(InputName)1.obj"
+                                                       
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
+                                               />
+                                       </FileConfiguration>
                                </File>
                                <File
-                                       
RelativePath=".\src\editor\file_list.hpp"
+                                       
RelativePath=".\src\editor\file_dialog.hpp"
                                        >
                                </File>
                                <File
-                                       
RelativePath=".\src\editor\file_load_dialog.cpp"
+                                       
RelativePath=".\src\editor\file_list.cpp"
                                        >
                                </File>
                                <File
-                                       
RelativePath=".\src\editor\file_load_dialog.hpp"
+                                       
RelativePath=".\src\editor\file_list.hpp"
                                        >
                                </File>
                                <File
-                                       
RelativePath=".\src\editor\file_save_dialog.cpp"
-                                       >
-                               </File>
-                               <File
-                                       
RelativePath=".\src\editor\file_save_dialog.hpp"
-                                       >
-                               </File>
-                               <File
                                        
RelativePath=".\src\editor\gui_style.cpp"
                                        >
                                </File>
@@ -1454,6 +1464,10 @@
                                        >
                                </File>
                                <File
+                                       RelativePath=".\src\gui\component.cpp"
+                                       >
+                               </File>
+                               <File
                                        RelativePath=".\src\gui\component.hpp"
                                        >
                                </File>

Modified: trunk/pingus/src/editor/combobox.cpp
===================================================================
--- trunk/pingus/src/editor/combobox.cpp        2007-09-18 16:03:52 UTC (rev 
3178)
+++ trunk/pingus/src/editor/combobox.cpp        2007-09-18 16:12:13 UTC (rev 
3179)
@@ -140,7 +140,7 @@
   //return -(rect.get_height() * current_item);
 
   // open to the top
-  return -(rect.get_height() * item_list.size());
+  return -(rect.get_height() * (int)item_list.size());
 }
 
 bool





reply via email to

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