- Timestamp:
- 03/21/09 17:30:21 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LogicMail/src/org/logicprobe/LogicMail/LogicMail.java
r388 r405 43 43 import net.rim.device.api.ui.UiApplication; 44 44 45 import org.logicprobe.LogicMail.ui. MailHomeScreen;45 import org.logicprobe.LogicMail.ui.NavigationController; 46 46 import org.logicprobe.LogicMail.ui.NotificationHandler; 47 47 import org.logicprobe.LogicMail.conf.AccountConfig; … … 62 62 */ 63 63 public class LogicMail extends UiApplication { 64 NavigationController navigationController; 65 64 66 /** 65 67 * Instantiates a new instance of the application. … … 96 98 buf.append(AppInfo.getVersion()); 97 99 buf.append("\r\n"); 100 buf.append("Platform: "); 101 buf.append(AppInfo.getPlatformVersion()); 102 buf.append("\r\n"); 98 103 EventLogger.logEvent(AppInfo.GUID, buf.toString().getBytes(), EventLogger.INFORMATION); 99 104 } … … 102 107 NotificationHandler.getInstance().setEnabled(true); 103 108 109 // Initialize the navigation controller 110 navigationController = new NavigationController(this); 111 104 112 // Push the mail home screen 105 pushScreen(new MailHomeScreen());113 navigationController.displayMailHome(); 106 114 } 107 115 }
Note: See TracChangeset
for help on using the changeset viewer.
