mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-30 08:34:16 +01:00
additional changes required post-merge to compile
This commit is contained in:
parent
c4e638bd84
commit
0d0146cb17
2 changed files with 1 additions and 18 deletions
|
@ -1381,23 +1381,6 @@ public class DBUtils {
|
|||
}
|
||||
}
|
||||
|
||||
private static void updateRow( Context context, String table,
|
||||
long rowid, ContentValues values )
|
||||
{
|
||||
initDB( context );
|
||||
synchronized( s_dbHelper ) {
|
||||
SQLiteDatabase db = s_dbHelper.getWritableDatabase();
|
||||
|
||||
String selection = String.format( ROW_ID_FMT, rowid );
|
||||
|
||||
int result = db.update( table, values, selection, null );
|
||||
db.close();
|
||||
if ( 0 == result ) {
|
||||
DbgUtils.logf( "updateRow failed" );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private static void notifyListeners( long rowid )
|
||||
{
|
||||
synchronized( s_listeners ) {
|
||||
|
|
|
@ -54,7 +54,7 @@ import junit.framework.Assert;
|
|||
|
||||
import org.eehouse.android.xw4.jni.*;
|
||||
|
||||
public class GamesList extends XWListActivity
|
||||
public class GamesList extends XWExpandableListActivity
|
||||
implements DBUtils.DBChangeListener,
|
||||
GameListAdapter.LoadItemCB,
|
||||
DictImportActivity.DownloadFinishedListener {
|
||||
|
|
Loading…
Add table
Reference in a new issue