QTfrontend/M3Panel.mm
changeset 8064 202e2cce7077
parent 6952 7f70f37bbf08
equal deleted inserted replaced
8063:06efc1ea6a40 8064:202e2cce7077
    27         M3InstallController *install;
    27         M3InstallController *install;
    28 };
    28 };
    29 
    29 
    30 M3Panel::M3Panel(void)
    30 M3Panel::M3Panel(void)
    31 {
    31 {
    32     c = new Private;
    32     m = new M3Panel::Private();
    33 
    33 
    34     c->install = [[M3InstallController alloc] init];
    34     m->install = [[M3InstallController alloc] init];
    35     [c->install retain];
    35     [m->install retain];
    36 }
    36 }
    37 
    37 
    38 M3Panel::~M3Panel()
    38 M3Panel::~M3Panel()
    39 {
    39 {
    40     [c->install release];
    40     [m->install release];
    41     delete c;
    41     delete m;
    42 }
    42 }
    43 
    43 
    44 void M3Panel::showInstallController()
    44 void M3Panel::showInstallController()
    45 {
    45 {
    46     [c->install displayInstaller];
    46     [m->install displayInstaller];
    47 }
    47 }