]> git.saurik.com Git - wxWidgets.git/commitdiff
Set all parent frame icons for print preview frame.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 25 Jul 2009 16:40:35 +0000 (16:40 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 25 Jul 2009 16:40:35 +0000 (16:40 +0000)
Using SetIcon(GetIcon()) resulted in ugly scaled icons being used for small icons while using SetIcons(GetIcons()) correctly reuses all parent frame icons in the child one.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61522 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/prntbase.cpp

index fcab0216039d7024bdb0e04db642aa12cb68ce1d..8ab0c0d00278b5d25af04a7f3ec1315af602717c 100644 (file)
@@ -1271,7 +1271,7 @@ wxFrame(parent, wxID_ANY, title, pos, size, style, name)
 #ifdef __WXMSW__
     wxFrame* topFrame = wxDynamicCast(wxTheApp->GetTopWindow(), wxFrame);
     if (topFrame)
-        SetIcon(topFrame->GetIcon());
+        SetIcons(topFrame->GetIcons());
 #endif
 }