mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-04 20:46:28 +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 );
|
||||
}
|
||||
|
||||
@Override
|
||||
public void orientationChanged()
|
||||
{
|
||||
Log.d( TAG, "BoardDelegate.orientationChanged()" );
|
||||
initToolbar();
|
||||
m_view.orientationChanged();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void setTitle()
|
||||
{
|
||||
|
|
|
@ -104,7 +104,6 @@ public class DelegateBase implements DlgClickNotify,
|
|||
protected void onDestroy() {}
|
||||
protected void onWindowFocusChanged( boolean hasFocus ) {}
|
||||
protected boolean handleBackPressed() { return false; }
|
||||
public void orientationChanged() {}
|
||||
|
||||
protected void requestWindowFeature( int feature ) {}
|
||||
|
||||
|
|
|
@ -192,13 +192,6 @@ public class XWActivity extends FragmentActivity
|
|||
return m_dlgt.onContextItemSelected( item );
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onConfigurationChanged( Configuration newConfig )
|
||||
{
|
||||
m_dlgt.orientationChanged();
|
||||
super.onConfigurationChanged( newConfig );
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onActivityResult( int requestCode, int resultCode,
|
||||
Intent data )
|
||||
|
|
Loading…
Add table
Reference in a new issue