removed static methods from wxAppTraitsBase, this doesn't work well in non-monolithic DLL build

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21604 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-07-03 12:42:14 +00:00
parent ee2b827101
commit 7843d11bdc
3 changed files with 2 additions and 28 deletions

View File

@@ -24,21 +24,9 @@ class WXDLLEXPORT wxMessageOutput;
// wxAppTraits: this class defines various configurable aspects of wxApp
// ----------------------------------------------------------------------------
#if wxUSE_BASE
class WXDLLIMPEXP_BASE wxAppTraitsBase
#else
class WXDLLIMPEXP_CORE wxAppTraitsBase
#endif
{
public:
// wxAppTraits is an ABC, but we also provide 2 standard implementations of
// it, one for the console apps and the other for the GUI ones
static wxAppTraits *CreateConsole();
#if wxUSE_GUI
static wxAppTraits *CreateGUI();
#endif // wxUSE_GUI
// hooks for creating the global objects, may be overridden by the user
// ------------------------------------------------------------------------