From 83f98b0d1d08ee54f7132439c74ad305cfd5c36d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?W=C5=82odzimierz=20Skiba?= Date: Thu, 22 Jul 2004 19:14:29 +0000 Subject: [PATCH] wxUSE_STATLINE fix. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28405 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/html/about/about.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/samples/html/about/about.cpp b/samples/html/about/about.cpp index 91072913d2..8f9203d43c 100644 --- a/samples/html/about/about.cpp +++ b/samples/html/about/about.cpp @@ -171,7 +171,9 @@ topsizer -> Add(html, 1, wxALL, 10); +#if wxUSE_STATLINE topsizer -> Add(new wxStaticLine(&dlg, wxID_ANY), 0, wxEXPAND | wxLEFT | wxRIGHT, 10); +#endif // wxUSE_STATLINE wxButton *bu1 = new wxButton(&dlg, wxID_OK, _("OK")); bu1 -> SetDefault();