From 280154a12c58b54a8006eec300282bb25485cd9c Mon Sep 17 00:00:00 2001 From: Eric House Date: Wed, 5 Jun 2013 08:03:13 -0700 Subject: [PATCH] fix bad message when dict deleted by using the right rowid variable -- duh. --- .../android/XWords4/src/org/eehouse/android/xw4/GamesList.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/GamesList.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/GamesList.java index e687fc5ec..a082fe1ac 100644 --- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/GamesList.java +++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/GamesList.java @@ -135,7 +135,7 @@ public class GamesList extends XWExpandableListActivity String message; String langName = DictLangCache.getLangName( this, m_missingDictLang ); - String gameName = GameUtils.getName( this, m_rowid ); + String gameName = GameUtils.getName( this, m_missingDictRowId ); if ( WARN_NODICT == id ) { message = getString( R.string.no_dictf, gameName, langName );