]> git.saurik.com Git - wxWidgets.git/commitdiff
Eliminated unreachable code warning in VC++
authorJulian Smart <julian@anthemion.co.uk>
Thu, 5 Sep 2002 20:12:02 +0000 (20:12 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Thu, 5 Sep 2002 20:12:02 +0000 (20:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16997 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/grid.cpp

index f9ff98782805cdb2f0b0c4b335744acdc7c44438..298b57b5a23c24c4f1f81dafdd43398a473e6417 100644 (file)
@@ -1012,10 +1012,7 @@ bool wxGridCellFloatEditor::EndEdit(int row, int col,
 
         return TRUE;
     }
-    else
-    {
-        return FALSE;
-    }
+    return FALSE;
 }
 
 void wxGridCellFloatEditor::Reset()