X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5276b0a53cef4815230e39b54d2ecda14f72cbd1..b64b4e70f1db0c53683327dc062548e8cf984810:/samples/dragimag/dragimag.cpp diff --git a/samples/dragimag/dragimag.cpp b/samples/dragimag/dragimag.cpp index cce62bcdfa..db5c14b430 100644 --- a/samples/dragimag/dragimag.cpp +++ b/samples/dragimag/dragimag.cpp @@ -142,7 +142,7 @@ void MyCanvas::OnMouseEvent(wxMouseEvent& event) m_currentlyHighlighted = (DragShape*) NULL; m_draggedShape = (DragShape*) NULL; - + Refresh(true); } else if (event.Dragging() && m_dragMode != TEST_DRAG_NONE) @@ -230,7 +230,7 @@ void MyCanvas::OnMouseEvent(wxMouseEvent& event) if (mustUnhighlightOld || mustHighlightNew) m_dragImage->Hide(); - + // Now with the drag image switched off, we can change the window contents. if (mustUnhighlightOld) m_currentlyHighlighted = (DragShape*) NULL; @@ -475,7 +475,7 @@ bool DragShape::Draw(wxDC& dc, bool highlight) dc.Blit(m_pos.x, m_pos.y, m_bitmap.GetWidth(), m_bitmap.GetHeight(), & memDC, 0, 0, wxCOPY, true); - + if (highlight) { dc.SetPen(*wxWHITE_PEN);