equal
deleted
inserted
replaced
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
17 */ |
17 */ |
18 |
18 |
19 #include "M3Panel.h" |
19 #include "M3Panel.h" |
20 #include "M3InstallController.h" |
20 #include "M3InstallController.h" |
21 #include "CocoaInitializer.h" |
|
22 |
21 |
23 #include <Cocoa/Cocoa.h> |
22 #include <Cocoa/Cocoa.h> |
24 |
23 |
25 class M3Panel::Private |
24 class M3Panel::Private |
26 { |
25 { |
29 }; |
28 }; |
30 |
29 |
31 M3Panel::M3Panel(void) |
30 M3Panel::M3Panel(void) |
32 { |
31 { |
33 c = new Private; |
32 c = new Private; |
34 |
33 |
35 CocoaInitializer initializer; |
|
36 c->install = [[M3InstallController alloc] init]; |
34 c->install = [[M3InstallController alloc] init]; |
37 [c->install retain]; |
35 [c->install retain]; |
38 |
36 |
39 } |
37 } |
40 |
38 |