mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-05 20:45:49 +01:00
remove onConfigurationChanged(); no longer called
Removing from AndroidManifest meant the overridden method is no longer called, so remove it and the code it calls.
This commit is contained in:
parent
14dd3b4950
commit
77a5d9c217
3 changed files with 0 additions and 16 deletions
|
@ -728,14 +728,6 @@ public class BoardDelegate extends DelegateBase
|
||||||
showInviteChoicesThen( Action.LAUNCH_INVITE_ACTION, info );
|
showInviteChoicesThen( Action.LAUNCH_INVITE_ACTION, info );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void orientationChanged()
|
|
||||||
{
|
|
||||||
Log.d( TAG, "BoardDelegate.orientationChanged()" );
|
|
||||||
initToolbar();
|
|
||||||
m_view.orientationChanged();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void setTitle()
|
protected void setTitle()
|
||||||
{
|
{
|
||||||
|
|
|
@ -104,7 +104,6 @@ public class DelegateBase implements DlgClickNotify,
|
||||||
protected void onDestroy() {}
|
protected void onDestroy() {}
|
||||||
protected void onWindowFocusChanged( boolean hasFocus ) {}
|
protected void onWindowFocusChanged( boolean hasFocus ) {}
|
||||||
protected boolean handleBackPressed() { return false; }
|
protected boolean handleBackPressed() { return false; }
|
||||||
public void orientationChanged() {}
|
|
||||||
|
|
||||||
protected void requestWindowFeature( int feature ) {}
|
protected void requestWindowFeature( int feature ) {}
|
||||||
|
|
||||||
|
|
|
@ -192,13 +192,6 @@ public class XWActivity extends FragmentActivity
|
||||||
return m_dlgt.onContextItemSelected( item );
|
return m_dlgt.onContextItemSelected( item );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onConfigurationChanged( Configuration newConfig )
|
|
||||||
{
|
|
||||||
m_dlgt.orientationChanged();
|
|
||||||
super.onConfigurationChanged( newConfig );
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onActivityResult( int requestCode, int resultCode,
|
protected void onActivityResult( int requestCode, int resultCode,
|
||||||
Intent data )
|
Intent data )
|
||||||
|
|
Loading…
Add table
Reference in a new issue