mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
remove unneeded intents
This commit is contained in:
parent
0485b6d4e6
commit
38ed6c925b
3 changed files with 0 additions and 24 deletions
|
@ -67,10 +67,6 @@
|
|||
android:label="@string/title_game"
|
||||
android:screenOrientation="sensor"
|
||||
>
|
||||
<!-- Do I need an intent at all here? -->
|
||||
<intent-filter android:label="@string/resolve_edit">
|
||||
<action android:name="android.intent.action.EDIT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="DictActivity"
|
||||
|
@ -78,9 +74,6 @@
|
|||
android:label="@string/title_game"
|
||||
android:screenOrientation="sensor"
|
||||
>
|
||||
<intent-filter android:label="@string/resolve_edit">
|
||||
<action android:name="android.intent.action.EDIT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="BoardActivity"
|
||||
|
@ -89,21 +82,6 @@
|
|||
android:screenOrientation="sensor"
|
||||
android:configChanges="keyboardHidden|orientation"
|
||||
>
|
||||
<!-- This filter says that we can edit the data of a game, i.e. play -->
|
||||
<intent-filter android:label="@string/play">
|
||||
<action android:name="android.intent.action.EDIT" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<data android:mimeType="vnd.android.cursor.item/vnd.org.eehouse.android.xw4.game" />
|
||||
</intent-filter>
|
||||
|
||||
<!-- This filter says that we can create a new note inside
|
||||
of a directory of notes. -->
|
||||
<!--intent-filter>
|
||||
<action android:name="android.intent.action.INSERT" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<data android:mimeType="vnd.android.cursor.dir/vnd.google.note" />
|
||||
</intent-filter-->
|
||||
|
||||
</activity>
|
||||
|
||||
<activity android:name="BlockingActivity"
|
||||
|
|
|
@ -274,7 +274,6 @@ public class BoardActivity extends Activity implements UtilCtxt {
|
|||
break;
|
||||
case R.id.board_menu_file_prefs:
|
||||
Intent intent = new Intent( this, PrefsActivity.class );
|
||||
intent.setAction( Intent.ACTION_EDIT );
|
||||
startActivity( intent );
|
||||
break;
|
||||
case R.id.board_menu_file_about:
|
||||
|
|
|
@ -441,7 +441,6 @@ public class GameConfig extends Activity implements View.OnClickListener {
|
|||
private void launchDictBrowser()
|
||||
{
|
||||
Intent intent = new Intent( this, DictActivity.class );
|
||||
intent.setAction( Intent.ACTION_EDIT );
|
||||
startActivity( intent );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue