Changed Window pointer ui tp QScopedPointer #95

Removed some default constructors from Member initializer list
Made member m_coreRuntime QScopedPointer
This commit is contained in:
Klaus Basan
2014-01-15 19:33:28 +01:00
parent 4c711dad82
commit 9f103a35cc
7 changed files with 17 additions and 23 deletions

View File

@@ -8,11 +8,11 @@
#include "guimodeenums.h"
#include <QDialog>
#include <QScopedPointer>
namespace Ui
{
class CIntroWindow;
class CIntroWindow;
}
class CIntroWindow : public QDialog
@@ -50,7 +50,7 @@ private slots:
void buttonClicked() const;
private:
Ui::CIntroWindow *ui;
QScopedPointer<Ui::CIntroWindow> ui;
};
#endif // guard