diff gui/app.c @ 32945:15aecb36f23e

Cosmetic: Rename appResetStruct() appInitStruct(). After the old appInitStruct() got renamed, the more appropriate name 'appInitStruct' can be used now for the function that does initialization.
author ib
date Sun, 06 Mar 2011 12:21:52 +0000
parents 27a98940e3aa
children d551faf8d07e
line wrap: on
line diff
--- a/gui/app.c	Sun Mar 06 11:55:52 2011 +0000
+++ b/gui/app.c	Sun Mar 06 12:21:52 2011 +0000
@@ -104,7 +104,7 @@
     item->tmp       = 0;
 }
 
-void appResetStruct(void)
+void appInitStruct(void)
 {
     appMPlayer.IndexOfMainItems = -1;
     appMPlayer.IndexOfBarItems  = -1;
@@ -137,7 +137,7 @@
     for (i = 0; i <= appMPlayer.IndexOfMenuItems; i++)
         appClearItem(&appMPlayer.menuItems[i]);
 
-    appResetStruct();
+    appInitStruct();
     fntFreeFont();
 }