QTfrontend/M3Panel.mm
changeset 5105 79faa1130011
parent 5085 e8944ed92b61
parent 5095 15dd764b728c
child 6952 7f70f37bbf08
--- a/QTfrontend/M3Panel.mm	Tue Apr 05 16:02:26 2011 -0400
+++ b/QTfrontend/M3Panel.mm	Tue Apr 05 16:05:41 2011 -0400
@@ -23,26 +23,25 @@
 
 class M3Panel::Private
 {
-public:
+    public:
         M3InstallController *install;
 };
 
 M3Panel::M3Panel(void)
 {
-	c = new Private;
+    c = new Private;
 
-	c->install = [[M3InstallController alloc] init];
-	[c->install retain];
-
+    c->install = [[M3InstallController alloc] init];
+    [c->install retain];
 }
 
 M3Panel::~M3Panel()
 {
-	[c->install release];
-	delete c;
+    [c->install release];
+    delete c;
 }
 
 void M3Panel::showInstallController()
 {
-        [c->install displayInstaller];
+    [c->install displayInstaller];
 }