From: Włodzimierz Skiba <abx@abx.art.pl>
Date: Tue, 2 May 2006 16:28:22 +0000 (+0000)
Subject: DMC warning fix.
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e19ac18a71c1e791ab3d0268ee43db8bd64dbd6d

DMC warning fix.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38973 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---

diff --git a/src/generic/vlbox.cpp b/src/generic/vlbox.cpp
index 4aaf8fa0af..d53213a284 100644
--- a/src/generic/vlbox.cpp
+++ b/src/generic/vlbox.cpp
@@ -1,5 +1,5 @@
 ///////////////////////////////////////////////////////////////////////////////
-// Name:        generic/vlbox.cpp
+// Name:        src/generic/vlbox.cpp
 // Purpose:     implementation of wxVListBox
 // Author:      Vadim Zeitlin
 // Modified by:
@@ -231,7 +231,7 @@ bool wxVListBox::DoSetCurrent(int current)
             // it is, indeed, only partly visible, so scroll it into view to
             // make it entirely visible
             while ( (size_t)m_current == GetLastVisibleLine() &&
-                    ScrollToLine(GetVisibleBegin()+1) );
+                    ScrollToLine(GetVisibleBegin()+1) ) ;
 
             // but in any case refresh it as even if it was only partly visible
             // before we need to redraw it entirely as its background changed
@@ -636,7 +636,7 @@ void wxVListBox::OnLeftDClick(wxMouseEvent& eventMouse)
         {
             OnLeftDown(eventMouse);
         }
-    
+
     }
 }