]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/bombs/bombs1.cpp
Corrected miniframe.
[wxWidgets.git] / samples / bombs / bombs1.cpp
index 38ff7571407fb1159509991e4212133c76288010..0b77417dcc62bf3f4ffc74ca98070fc7a73fe538 100644 (file)
@@ -46,8 +46,6 @@ void BombsCanvasClass::DrawField(wxDC *dc, int xc1, int yc1, int xc2, int yc2)
   wxPen *blackPen = wxThePenList->FindOrCreatePen(*wxBlack, 1, wxSOLID);
   wxPen *redPen = wxThePenList->FindOrCreatePen(*wxRed, 1, wxSOLID);
   wxPen *bluePen = wxThePenList->FindOrCreatePen(*wxBlue, 1, wxSOLID);
-  wxPen *whitePen = wxThePenList->FindOrCreatePen(*wxWhite, 1, wxSOLID);
-  wxPen *greyPen = wxThePenList->FindOrCreatePen(*wxGrey, 1, wxSOLID);
   wxBrush *whiteBrush = wxTheBrushList->FindOrCreateBrush(*wxWhite, wxSOLID);
   wxBrush *greyBrush = wxTheBrushList->FindOrCreateBrush(*wxGrey, wxSOLID);
   wxBrush *redBrush = wxTheBrushList->FindOrCreateBrush(*wxRed, wxSOLID);
@@ -168,8 +166,9 @@ void BombsCanvasClass::Refresh(int xc1, int yc1, int xc2, int yc2)
 
 // Called when the canvas receives a mouse event.
 void BombsCanvasClass::OnEvent(wxMouseEvent& event)
-{ float fx, fy;
-  event.Position(&fx, &fy);
+{
+  wxCoord fx, fy;
+  event.GetPosition(&fx, &fy);
   int x = fx/(x_cell*X_UNIT);
   int y = fy/(y_cell*Y_UNIT);
   if (x<field_width && y<field_height)