Fix using wxThreadHelper in DLL builds

Remove the unnecessary and actually harmful WXDLLIMPEXP_BASE from the
declaration of wxThreadHelperThread and wxThreadHelper classes that only
have inline methods.
This commit is contained in:
Maarten Bent
2020-12-26 15:54:43 +01:00
committed by Vadim Zeitlin
parent 45757c6728
commit 1f504d3c5c

View File

@@ -649,7 +649,7 @@ private:
// wxThreadHelperThread class
// --------------------------
class WXDLLIMPEXP_BASE wxThreadHelperThread : public wxThread
class wxThreadHelperThread : public wxThread
{
public:
// constructor only creates the C++ thread object and doesn't create (or
@@ -677,7 +677,7 @@ private:
// derive from it to implement a threading background task in your class.
// ----------------------------------------------------------------------------
class WXDLLIMPEXP_BASE wxThreadHelper
class wxThreadHelper
{
private:
void KillThread()