From ab94485efa4ab4cb6a08559277b22d7818e96a85 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 18 Jan 2022 19:08:50 +0100 Subject: [PATCH] Really fix example of creating wxBitmapBundle in hight DPI docs Co-Authored-By: PB --- docs/doxygen/overviews/high_dpi.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. ~~~