mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-09 05:24:44 +01:00
fix NPE (by inspection, from crashlytics report)
This commit is contained in:
parent
c2a4c07746
commit
274e7c6c4b
1 changed files with 4 additions and 1 deletions
|
@ -455,7 +455,10 @@ public class DlgDelegate {
|
||||||
|
|
||||||
public void setProgressMsg( int id )
|
public void setProgressMsg( int id )
|
||||||
{
|
{
|
||||||
m_progress.setMessage( getString( id ) );
|
ProgressDialog progress = m_progress;
|
||||||
|
if ( null != progress ) {
|
||||||
|
progress.setMessage( getString( id ) );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void stopProgress()
|
public void stopProgress()
|
||||||
|
|
Loading…
Reference in a new issue