From 0f9390c3c53db45c2fb01747e6cf747fdd980f33 Mon Sep 17 00:00:00 2001 From: Gilles Depeyrot Date: Sun, 17 Mar 2002 14:27:10 +0000 Subject: [PATCH] added wxMAC and wxMOTIF to title conditional compilation git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14662 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/widgets/widgets.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/samples/widgets/widgets.cpp b/samples/widgets/widgets.cpp index 4955226402..c6069c0bb6 100644 --- a/samples/widgets/widgets.cpp +++ b/samples/widgets/widgets.cpp @@ -205,6 +205,10 @@ bool WidgetsApp::OnInit() title += _T("wxMSW"); #elif defined(__WXGTK__) title += _T("wxGTK"); +#elif defined(__WXMAC__) + title += _T("wxMAC"); +#elif defined(__WXMOTIF__) + title += _T("wxMOTIF"); #else title += _T("wxWindows"); #endif -- 2.45.2