X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7df07b10aaf306995cc93f67706113bae9173135..485cd20763bbd61a70295f270a7add9949433e1f:/samples/shaped/shaped.cpp?ds=sidebyside diff --git a/samples/shaped/shaped.cpp b/samples/shaped/shaped.cpp index eefa2639db..a79b97abbf 100644 --- a/samples/shaped/shaped.cpp +++ b/samples/shaped/shaped.cpp @@ -182,7 +182,7 @@ void ShapedFrame::SetWindowShape() m_hasShape = SetShape(region); } -void ShapedFrame::OnDoubleClick(wxMouseEvent& evt) +void ShapedFrame::OnDoubleClick(wxMouseEvent& WXUNUSED(evt)) { if (m_hasShape) { @@ -205,13 +205,13 @@ void ShapedFrame::OnLeftDown(wxMouseEvent& evt) m_delta = wxPoint(dx, dy); } -void ShapedFrame::OnLeftUp(wxMouseEvent& evt) +void ShapedFrame::OnLeftUp(wxMouseEvent& WXUNUSED(evt)) { if (HasCapture()) { ReleaseMouse(); //printf("Mouse released\n"); -} + } } void ShapedFrame::OnMouseMove(wxMouseEvent& evt) @@ -225,18 +225,18 @@ void ShapedFrame::OnMouseMove(wxMouseEvent& evt) } } -void ShapedFrame::OnExit(wxMouseEvent& evt) +void ShapedFrame::OnExit(wxMouseEvent& WXUNUSED(evt)) { Close(); } -void ShapedFrame::OnPaint(wxPaintEvent& evt) +void ShapedFrame::OnPaint(wxPaintEvent& WXUNUSED(evt)) { wxPaintDC dc(this); dc.DrawBitmap(m_bmp, 0, 0, TRUE); } -void ShapedFrame::OnWindowCreate(wxWindowCreateEvent& evt) +void ShapedFrame::OnWindowCreate(wxWindowCreateEvent& WXUNUSED(evt)) { SetWindowShape(); }