From 96849c75a77bd925d2204200063c5fa1199b1146 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karsten=20Ball=C3=BCder?= Date: Fri, 30 Oct 1998 11:24:16 +0000 Subject: [PATCH] fixed wxICON() usage git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@940 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- user/wxLayout/wxLayout.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user/wxLayout/wxLayout.cpp b/user/wxLayout/wxLayout.cpp index b41f12f9cb..9435508854 100644 --- a/user/wxLayout/wxLayout.cpp +++ b/user/wxLayout/wxLayout.cpp @@ -115,7 +115,7 @@ MyFrame::AddSampleText(wxLayoutList &llist) llist.Insert("The quick brown fox jumps over the lazy dog."); llist.LineBreak(); llist.Insert("Hello "); - llist.Insert(new wxLayoutObjectIcon(new wxICON(Micon_xpm))); + llist.Insert(new wxLayoutObjectIcon(new wxICON(Micon))); llist.LineBreak(); llist.SetFontWeight(wxBOLD); llist.Insert("World! ");