mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-14 08:01:38 +01:00
rename LookupView to LookupActivity
This commit is contained in:
parent
0d69c6097a
commit
d732094c59
3 changed files with 5 additions and 5 deletions
|
@ -83,7 +83,7 @@
|
|||
>
|
||||
</activity>
|
||||
|
||||
<activity android:name="LookupView"
|
||||
<activity android:name="LookupActivity"
|
||||
android:configChanges="keyboardHidden|orientation"
|
||||
android:theme="@android:style/Theme.Dialog"
|
||||
/>
|
||||
|
|
|
@ -235,9 +235,9 @@ public class DlgDelegate {
|
|||
|
||||
public void launchLookup( String[] words, int lang, boolean forceList )
|
||||
{
|
||||
Intent intent = new Intent( m_activity, LookupView.class );
|
||||
intent.putExtra( LookupView.WORDS, words );
|
||||
intent.putExtra( LookupView.LANG, lang );
|
||||
Intent intent = new Intent( m_activity, LookupActivity.class );
|
||||
intent.putExtra( LookupActivity.WORDS, words );
|
||||
intent.putExtra( LookupActivity.LANG, lang );
|
||||
|
||||
m_activity.startActivity( intent );
|
||||
}
|
||||
|
|
|
@ -35,7 +35,7 @@ import java.util.ArrayList;
|
|||
|
||||
import junit.framework.Assert;
|
||||
|
||||
public class LookupView extends XWListActivity
|
||||
public class LookupActivity extends XWListActivity
|
||||
implements View.OnClickListener,
|
||||
AdapterView.OnItemClickListener {
|
||||
|
Loading…
Reference in a new issue