mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-30 08:34:16 +01:00
FOR DEBUGGING ONLY: %p segfaults!
This commit is contained in:
parent
b2d5336fbb
commit
33188b441d
2 changed files with 12 additions and 12 deletions
|
@ -38,7 +38,7 @@ public class XWActivity extends Activity {
|
||||||
|
|
||||||
protected void onCreate( Bundle savedInstanceState )
|
protected void onCreate( Bundle savedInstanceState )
|
||||||
{
|
{
|
||||||
Utils.logf( "%s.onCreate(this=%p)", getClass().getName(), this );
|
Utils.logf( "%s.onCreate(this=%x)", getClass().getName(), this );
|
||||||
super.onCreate( savedInstanceState );
|
super.onCreate( savedInstanceState );
|
||||||
m_delegate = new DlgDelegate( this );
|
m_delegate = new DlgDelegate( this );
|
||||||
}
|
}
|
||||||
|
@ -46,7 +46,7 @@ public class XWActivity extends Activity {
|
||||||
@Override
|
@Override
|
||||||
protected void onStart()
|
protected void onStart()
|
||||||
{
|
{
|
||||||
Utils.logf( "%s.onStart(this=%p)", getClass().getName(), this );
|
Utils.logf( "%s.onStart(this=%x)", getClass().getName(), this );
|
||||||
super.onStart();
|
super.onStart();
|
||||||
DispatchNotify.SetRunning( this );
|
DispatchNotify.SetRunning( this );
|
||||||
}
|
}
|
||||||
|
@ -54,21 +54,21 @@ public class XWActivity extends Activity {
|
||||||
@Override
|
@Override
|
||||||
protected void onResume()
|
protected void onResume()
|
||||||
{
|
{
|
||||||
Utils.logf( "%s.onResume(this=%p)", getClass().getName(), this );
|
Utils.logf( "%s.onResume(this=%x)", getClass().getName(), this );
|
||||||
super.onResume();
|
super.onResume();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onPause()
|
protected void onPause()
|
||||||
{
|
{
|
||||||
Utils.logf( "%s.onPause(this=%p)", getClass().getName(), this );
|
Utils.logf( "%s.onPause(this=%x)", getClass().getName(), this );
|
||||||
super.onPause();
|
super.onPause();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onStop()
|
protected void onStop()
|
||||||
{
|
{
|
||||||
Utils.logf( "%s.onStop(this=%p)", getClass().getName(), this );
|
Utils.logf( "%s.onStop(this=%x)", getClass().getName(), this );
|
||||||
DispatchNotify.ClearRunning( this );
|
DispatchNotify.ClearRunning( this );
|
||||||
super.onStop();
|
super.onStop();
|
||||||
}
|
}
|
||||||
|
@ -76,7 +76,7 @@ public class XWActivity extends Activity {
|
||||||
@Override
|
@Override
|
||||||
protected void onDestroy()
|
protected void onDestroy()
|
||||||
{
|
{
|
||||||
Utils.logf( "%s.onDestroy(this=%p); isFinishing=%s",
|
Utils.logf( "%s.onDestroy(this=%x); isFinishing=%s",
|
||||||
getClass().getName(), this, isFinishing()?"true":"false" );
|
getClass().getName(), this, isFinishing()?"true":"false" );
|
||||||
super.onDestroy();
|
super.onDestroy();
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,7 +33,7 @@ public class XWListActivity extends ListActivity {
|
||||||
@Override
|
@Override
|
||||||
protected void onCreate( Bundle savedInstanceState )
|
protected void onCreate( Bundle savedInstanceState )
|
||||||
{
|
{
|
||||||
Utils.logf( "%s.onCreate(this=%p)", getClass().getName(), this );
|
Utils.logf( "%s.onCreate(this=%x)", getClass().getName(), this );
|
||||||
super.onCreate( savedInstanceState );
|
super.onCreate( savedInstanceState );
|
||||||
m_delegate = new DlgDelegate( this );
|
m_delegate = new DlgDelegate( this );
|
||||||
}
|
}
|
||||||
|
@ -41,7 +41,7 @@ public class XWListActivity extends ListActivity {
|
||||||
@Override
|
@Override
|
||||||
protected void onStart()
|
protected void onStart()
|
||||||
{
|
{
|
||||||
Utils.logf( "%s.onStart(this=%p)", getClass().getName(), this );
|
Utils.logf( "%s.onStart(this=%x)", getClass().getName(), this );
|
||||||
super.onStart();
|
super.onStart();
|
||||||
DispatchNotify.SetRunning( this );
|
DispatchNotify.SetRunning( this );
|
||||||
}
|
}
|
||||||
|
@ -49,21 +49,21 @@ public class XWListActivity extends ListActivity {
|
||||||
@Override
|
@Override
|
||||||
protected void onResume()
|
protected void onResume()
|
||||||
{
|
{
|
||||||
Utils.logf( "%s.onResume(this=%p)", getClass().getName(), this );
|
Utils.logf( "%s.onResume(this=%x)", getClass().getName(), this );
|
||||||
super.onResume();
|
super.onResume();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onPause()
|
protected void onPause()
|
||||||
{
|
{
|
||||||
Utils.logf( "%s.onPause(this=%p)", getClass().getName(), this );
|
Utils.logf( "%s.onPause(this=%x)", getClass().getName(), this );
|
||||||
super.onPause();
|
super.onPause();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onStop()
|
protected void onStop()
|
||||||
{
|
{
|
||||||
Utils.logf( "%s.onStop(this=%p)", getClass().getName(), this );
|
Utils.logf( "%s.onStop(this=%x)", getClass().getName(), this );
|
||||||
DispatchNotify.ClearRunning( this );
|
DispatchNotify.ClearRunning( this );
|
||||||
super.onStop();
|
super.onStop();
|
||||||
}
|
}
|
||||||
|
@ -71,7 +71,7 @@ public class XWListActivity extends ListActivity {
|
||||||
@Override
|
@Override
|
||||||
protected void onDestroy()
|
protected void onDestroy()
|
||||||
{
|
{
|
||||||
Utils.logf( "%s.onDestroy(this=%p); isFinishing=%s",
|
Utils.logf( "%s.onDestroy(this=%x); isFinishing=%s",
|
||||||
getClass().getName(), this, isFinishing()?"true":"false" );
|
getClass().getName(), this, isFinishing()?"true":"false" );
|
||||||
super.onDestroy();
|
super.onDestroy();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue