mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-05 20:45:49 +01:00
now that game name's in the display, sort by that.
This commit is contained in:
parent
9e56e4f40c
commit
b32f65574d
1 changed files with 1 additions and 1 deletions
|
@ -503,7 +503,7 @@ public class DBUtils {
|
|||
SQLiteDatabase db = s_dbHelper.getReadableDatabase();
|
||||
|
||||
String[] columns = { DBHelper.FILE_NAME };
|
||||
String orderBy = DBHelper.CREATE_TIME + " DESC";
|
||||
String orderBy = DBHelper.FILE_NAME + " DESC";
|
||||
Cursor cursor = db.query( DBHelper.TABLE_NAME_SUM, columns,
|
||||
null, null, null, null, orderBy );
|
||||
if ( 0 < cursor.getCount() ) {
|
||||
|
|
Loading…
Add table
Reference in a new issue