Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ginatrapani committed Feb 28, 2012
1 parent c78c416 commit a81882a
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/com/todotxt/todotxttouch/TodoApplication.java
Expand Up @@ -46,13 +46,12 @@ public class TodoApplication extends Application {
public boolean m_pushing = false;
private TaskBag taskBag;
private BroadcastReceiver m_broadcastReceiver;
private static Context appContetxt;


private static Context appContext;

@Override
public void onCreate() {
super.onCreate();
this.appContetxt = getApplicationContext();
TodoApplication.appContext = getApplicationContext();
m_prefs = PreferenceManager.getDefaultSharedPreferences(this);
remoteClientManager = new RemoteClientManager(this, m_prefs);
this.taskBag = TaskBagFactory.getTaskBag(this, m_prefs);
Expand Down Expand Up @@ -127,7 +126,7 @@ public boolean isOfflineMode() {
}

public static Context getAppContetxt() {
return appContetxt;
return appContext;
}

public void setOfflineMode() {
Expand Down

0 comments on commit a81882a

Please sign in to comment.