projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Documenting WX_MONOLITHIC build option.
[wxWidgets.git]
/
samples
/
rotate
/
rotate.cpp
diff --git
a/samples/rotate/rotate.cpp
b/samples/rotate/rotate.cpp
index 7313f50ec8df16395967b6f481fda7a2c66ac803..fb1f8c286f061a167984500c5e2e6c4e365910d8 100644
(file)
--- a/
samples/rotate/rotate.cpp
+++ b/
samples/rotate/rotate.cpp
@@
-213,7
+213,6
@@
void MyCanvas::OnPaint (wxPaintEvent &)
size_t numImages = m_images.GetCount();
wxPaintDC dc(this);
size_t numImages = m_images.GetCount();
wxPaintDC dc(this);
- dc.BeginDrawing();
dc.SetTextForeground(wxColour(255, 255, 255));
dc.DrawText(wxT("Click on the canvas to draw a duck."), 10, 10);
dc.SetTextForeground(wxColour(255, 255, 255));
dc.DrawText(wxT("Click on the canvas to draw a duck."), 10, 10);
@@
-222,8
+221,6
@@
void MyCanvas::OnPaint (wxPaintEvent &)
MyRenderedImage & image = m_images.Item(i);
dc.DrawBitmap(image.m_bmp, image.m_x, image.m_y, true);
}
MyRenderedImage & image = m_images.Item(i);
dc.DrawBitmap(image.m_bmp, image.m_x, image.m_y, true);
}
-
- dc.EndDrawing();
}
// ----------------------------------------------------------------------------
}
// ----------------------------------------------------------------------------