Remove unused wxProgressDialogTaskRunner::m_parent field.

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
This commit is contained in:
Vadim Zeitlin
2010-09-04 13:33:40 +00:00
parent a5655d37db
commit 8297e64b31

View File

@@ -100,16 +100,14 @@ 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:
wxWindow* m_parent;
wxProgressDialogSharedData m_sharedData;
virtual void* Entry();
@@ -586,7 +584,7 @@ bool wxProgressDialog::Show(bool show)
// 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.