diff --git a/docs/doxygen/overviews/high_dpi.md b/docs/doxygen/overviews/high_dpi.md index 09d2cb11a6..9242a53f54 100644 --- a/docs/doxygen/overviews/high_dpi.md +++ b/docs/doxygen/overviews/high_dpi.md @@ -207,7 +207,7 @@ used rather than having to construct a vector from them: wxBitmap normal(32, 32); wxBitmap highDPI(64, 64); ... initialize the bitmaps somehow ... -wxBitmapBundle bundle = wxBitmapBundle::FromBitmaps(normal, bitmap); +wxBitmapBundle bundle = wxBitmapBundle::FromBitmaps(normal, highDPI); // Now the bundle can be passed to any wxWidgets control using bitmaps. ~~~