mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-06 20:45:54 +01:00
pass Context to CrashTrack
This commit is contained in:
parent
f27394ca03
commit
daa59ee03d
2 changed files with 4 additions and 2 deletions
|
@ -20,6 +20,8 @@
|
|||
|
||||
package org.eehouse.android.xw4;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
public class CrashTrack {
|
||||
public static void init() {} // does nothing here
|
||||
public static void init( Context context ) {} // does nothing here
|
||||
}
|
||||
|
|
|
@ -370,7 +370,7 @@ public class GamesList extends XWExpandableListActivity
|
|||
// scary, but worth playing with:
|
||||
// Assert.assertTrue( isTaskRoot() );
|
||||
|
||||
CrashTrack.init();
|
||||
CrashTrack.init( this );
|
||||
|
||||
m_selGames = new HashSet<Long>();
|
||||
m_selGroupIDs = new HashSet<Long>();
|
||||
|
|
Loading…
Add table
Reference in a new issue