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:
committed by
Vadim Zeitlin
parent
45757c6728
commit
1f504d3c5c
@@ -649,7 +649,7 @@ private:
|
|||||||
// wxThreadHelperThread class
|
// wxThreadHelperThread class
|
||||||
// --------------------------
|
// --------------------------
|
||||||
|
|
||||||
class WXDLLIMPEXP_BASE wxThreadHelperThread : public wxThread
|
class wxThreadHelperThread : public wxThread
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
// constructor only creates the C++ thread object and doesn't create (or
|
// 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.
|
// derive from it to implement a threading background task in your class.
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
class WXDLLIMPEXP_BASE wxThreadHelper
|
class wxThreadHelper
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
void KillThread()
|
void KillThread()
|
||||||
|
Reference in New Issue
Block a user