]> git.saurik.com Git - wxWidgets.git/commitdiff
Initialize m_isShown correctly in wxGenericDragImage::BeginDrag().
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 29 Feb 2012 13:58:55 +0000 (13:58 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 29 Feb 2012 13:58:55 +0000 (13:58 +0000)
The code initialized m_isDirty twice which was clearly wrong. The original
intention was probably to set both m_isDirty and m_isShown to false.

Thanks to PVS-Studio for finding this bug.

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

src/generic/dragimgg.cpp

index 6e3fbad8bee947527936202fca5406f1dc6a7805..99286fbd2836cd6e7e5b6f36aaadae9ee9c6e980 100644 (file)
@@ -247,7 +247,7 @@ bool wxGenericDragImage::BeginDrag(const wxPoint& hotspot,
         m_boundingRect = * rect;
 
     m_isDirty = false;
-    m_isDirty = false;
+    m_isShown = false;
 
     if (m_cursor.IsOk())
     {