cocoaTouch/VoicesViewController.m
changeset 3490 016b3172b645
parent 3364 e5403e2bf02c
child 3513 f589230fa21b
--- a/cocoaTouch/VoicesViewController.m	Tue Jun 01 19:33:45 2010 +0000
+++ b/cocoaTouch/VoicesViewController.m	Wed Jun 02 13:52:23 2010 +0000
@@ -173,7 +173,7 @@
 
 #pragma mark -
 #pragma mark Memory management
-- (void)didReceiveMemoryWarning {
+-(void) didReceiveMemoryWarning {
     openal_stopsound(voiceBeingPlayed);
     openal_freesound(voiceBeingPlayed);
     voiceBeingPlayed = -1;
@@ -182,17 +182,17 @@
     // Relinquish ownership any cached data, images, etc that aren't in use.
 }
 
-- (void)viewDidUnload {
-    [super viewDidUnload];
-
+-(void) viewDidUnload {
     openal_close();
     voiceBeingPlayed = -1;
     self.lastIndexPath = nil;
     self.teamDictionary = nil;
     self.voiceArray = nil;
+    [super viewDidUnload];
+    MSG_DIDUNLOAD();
 }
 
-- (void)dealloc {
+-(void) dealloc {
     [voiceArray release];
     [teamDictionary release];
     [lastIndexPath release];