summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
a5655d3)
This seems to be a left over from old version of the code and is not used any
longer.
See #12414.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65468
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
class wxProgressDialogTaskRunner : public wxThread
{
public:
class wxProgressDialogTaskRunner : public wxThread
{
public:
- wxProgressDialogTaskRunner(wxWindow* parent)
- : wxThread(wxTHREAD_JOINABLE),
- m_parent(parent)
+ wxProgressDialogTaskRunner()
+ : wxThread(wxTHREAD_JOINABLE)
{ }
wxProgressDialogSharedData* GetSharedDataObject()
{ return &m_sharedData; }
private:
{ }
wxProgressDialogSharedData* GetSharedDataObject()
{ return &m_sharedData; }
private:
wxProgressDialogSharedData m_sharedData;
virtual void* Entry();
wxProgressDialogSharedData m_sharedData;
virtual void* Entry();
// We're showing the dialog for the first time, create the thread that
// will manage it.
// We're showing the dialog for the first time, create the thread that
// will manage it.
- m_taskDialogRunner = new wxProgressDialogTaskRunner(GetParent());
+ m_taskDialogRunner = new wxProgressDialogTaskRunner;
m_sharedData = m_taskDialogRunner->GetSharedDataObject();
// Initialize shared data.
m_sharedData = m_taskDialogRunner->GetSharedDataObject();
// Initialize shared data.