=== modified file 'common/gal/stroke_font.cpp'
--- common/gal/stroke_font.cpp	2014-01-06 09:29:31 +0000
+++ common/gal/stroke_font.cpp	2014-06-01 20:45:39 +0000
@@ -270,7 +270,7 @@
 
         unsigned dd = *chIt - ' ';
 
-        if( dd >= m_glyphBoundingBoxes.size() || dd < 0 )
+        if( dd >= m_glyphBoundingBoxes.size() )
             dd = '?' - ' ';
 
         GLYPH& glyph = m_glyphs[dd];
@@ -338,7 +338,7 @@
         // Index in the bounding boxes table
         unsigned dd = *it - ' ';
 
-        if( dd >= m_glyphBoundingBoxes.size() || dd < 0 )
+        if( dd >= m_glyphBoundingBoxes.size() )
             dd = '?' - ' ';
 
         result.x += m_glyphSize.x * m_glyphBoundingBoxes[dd].GetEnd().x;

=== modified file 'cvpcb/class_components_listbox.cpp'
--- cvpcb/class_components_listbox.cpp	2013-09-17 00:52:08 +0000
+++ cvpcb/class_components_listbox.cpp	2014-06-01 20:45:39 +0000
@@ -71,8 +71,7 @@
     if( linecount >= m_ComponentList.Count() )
         linecount = m_ComponentList.Count() - 1;
 
-    if( linecount >= 0 )
-        m_ComponentList[linecount] = text;
+    m_ComponentList[linecount] = text;
 }
 
 
@@ -94,7 +93,7 @@
     if( (int) index >= GetCount() )
         index = GetCount() - 1;
 
-    if( (index >= 0) && (GetCount() > 0) )
+    if( GetCount() > 0 )
     {
         Select( index, State );
         EnsureVisible( index );

=== modified file 'cvpcb/class_footprints_listbox.cpp'
--- cvpcb/class_footprints_listbox.cpp	2014-04-02 13:38:59 +0000
+++ cvpcb/class_footprints_listbox.cpp	2014-06-01 20:45:39 +0000
@@ -63,8 +63,7 @@
     if( linecount >= m_footprintList.Count() )
         linecount = m_footprintList.Count() - 1;
 
-    if( linecount >= 0 )
-        m_footprintList[linecount] = text;
+    m_footprintList[linecount] = text;
 }
 
 
@@ -106,7 +105,7 @@
     if( (int) index >= GetCount() )
         index = GetCount() - 1;
 
-    if( (index >= 0)  && (GetCount() > 0) )
+    if( GetCount() > 0 )
     {
 #ifndef __WXMAC__
         Select( index, State );

=== modified file 'cvpcb/class_library_listbox.cpp'
--- cvpcb/class_library_listbox.cpp	2014-05-18 15:16:59 +0000
+++ cvpcb/class_library_listbox.cpp	2014-06-01 20:45:39 +0000
@@ -63,8 +63,7 @@
     if( linecount >= m_libraryList.Count() )
         linecount = m_libraryList.Count() - 1;
 
-    if( linecount >= 0 )
-        m_libraryList[linecount] = text;
+    m_libraryList[linecount] = text;
 }
 
 
@@ -100,7 +99,7 @@
     if( (int) index >= GetCount() )
         index = GetCount() - 1;
 
-    if( (index >= 0)  && (GetCount() > 0) )
+    if( GetCount() > 0 )
     {
 #ifndef __WXMAC__
         Select( index, State );

=== modified file 'eeschema/dialog_erc_listbox.h'
--- eeschema/dialog_erc_listbox.h	2013-05-26 04:36:44 +0000
+++ eeschema/dialog_erc_listbox.h	2014-06-01 20:45:39 +0000
@@ -76,7 +76,7 @@
      */
     wxString OnGetItem( size_t n ) const
     {
-        if( m_MarkerList.size() > n && n >= 0 )
+        if( m_MarkerList.size() > n )
         {
             const SCH_MARKER* item = m_MarkerList[ n ];
             if( item )

