CorePlugin: s/struct/class/ in newdialog.cpp

Change-Id: Ie13d8506ae8fc402a0ba5f6c5f14d47a95b2376d
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
Tobias Hunger
2014-05-02 16:29:17 +02:00
parent 62567a6bdd
commit 11bc9882a7

View File

@@ -48,8 +48,9 @@ namespace {
const int ICON_SIZE = 22;
struct WizardContainer
class WizardContainer
{
public:
WizardContainer() : wizard(0), wizardOption(0) {}
WizardContainer(Core::IWizard *w, int i): wizard(w), wizardOption(i) {}
Core::IWizard *wizard;