mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-07 20:46:17 +01:00
rename variable
TAG has conventional meaning I'm about to take advantage of, so rename the one variable that would conflict.
This commit is contained in:
parent
b8844a0e2d
commit
927c181ccc
1 changed files with 3 additions and 2 deletions
|
@ -117,7 +117,8 @@ public class DBHelper extends SQLiteOpenHelper {
|
||||||
|
|
||||||
public static final String SENDER = "SENDER";
|
public static final String SENDER = "SENDER";
|
||||||
public static final String MESSAGE = "MESSAGE";
|
public static final String MESSAGE = "MESSAGE";
|
||||||
public static final String TAG = "TAG";
|
// TAG is a thing in Android; don't wear it out
|
||||||
|
public static final String TAGG = "TAG";
|
||||||
|
|
||||||
private Context m_context;
|
private Context m_context;
|
||||||
|
|
||||||
|
@ -224,7 +225,7 @@ public class DBHelper extends SQLiteOpenHelper {
|
||||||
private static final String[][] s_logsSchema = {
|
private static final String[][] s_logsSchema = {
|
||||||
{ TIMESTAMP, "DATETIME DEFAULT CURRENT_TIMESTAMP" },
|
{ TIMESTAMP, "DATETIME DEFAULT CURRENT_TIMESTAMP" },
|
||||||
{ MESSAGE, "TEXT" },
|
{ MESSAGE, "TEXT" },
|
||||||
{ TAG, "TEXT" },
|
{ TAGG, "TEXT" },
|
||||||
};
|
};
|
||||||
|
|
||||||
public DBHelper( Context context )
|
public DBHelper( Context context )
|
||||||
|
|
Loading…
Add table
Reference in a new issue