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:
parent
45757c6728
commit
1f504d3c5c
1 changed files with 2 additions and 2 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue