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
This commit is contained in:
Gilles Depeyrot 2002-03-17 14:27:10 +00:00
parent 15e758d12f
commit 0f9390c3c5

View File

@ -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