Remove wxConsoleEventLoop from WXQT

The console event loop in the wxBase library is GUI toolkit independent.
This commit is contained in:
Maarten Bent
2018-09-25 19:52:58 +02:00
parent f5b4d707b8
commit 8f017509f6
2 changed files with 1 additions and 25 deletions

View File

@@ -10,7 +10,7 @@
class QTimer;
class WXDLLIMPEXP_BASE wxQtEventLoopBase : public wxEventLoopBase
class WXDLLIMPEXP_CORE wxQtEventLoopBase : public wxEventLoopBase
{
public:
wxQtEventLoopBase();
@@ -44,18 +44,6 @@ public:
wxGUIEventLoop();
};
#else // !wxUSE_GUI
#if wxUSE_CONSOLE_EVENTLOOP
class WXDLLIMPEXP_BASE wxConsoleEventLoop : public wxQtEventLoopBase
{
public:
wxConsoleEventLoop();
};
#endif // wxUSE_CONSOLE_EVENTLOOP
#endif // wxUSE_GUI
#endif // _WX_QT_EVTLOOP_H_

View File

@@ -259,16 +259,4 @@ wxGUIEventLoop::wxGUIEventLoop()
{
}
#else // !wxUSE_GUI
//#############################################################################
#if wxUSE_CONSOLE_EVENTLOOP
wxConsoleEventLoop::wxConsoleEventLoop()
{
}
#endif // wxUSE_CONSOLE_EVENTLOOP
#endif // wxUSE_GUI