Change member variable type

This commit is contained in:
Cătălin Răceanu
2019-02-27 16:58:35 +02:00
parent c00187eaeb
commit 113822d024
2 changed files with 10 additions and 11 deletions

View File

@@ -10,8 +10,6 @@
#include "wx/statusbr.h"
#include <QtCore/QScopedPointer>
class QLabel;
class QStatusBar;
@@ -47,7 +45,7 @@ private:
void UpdateFields();
QStatusBar *m_qtStatusBar;
QScopedPointer< QList<QLabel*> > m_qtPanes; // should this really be a pointer?
wxVector<QLabel*> m_qtPanes;
wxDECLARE_DYNAMIC_CLASS(wxStatusBar);
};