mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
fix broken about dialog
This commit is contained in:
parent
9e300c3a0d
commit
618d180aab
1 changed files with 4 additions and 4 deletions
|
@ -425,10 +425,10 @@ public class DlgDelegate {
|
|||
{
|
||||
final View view = LocUtils.inflate( m_activity, R.layout.about_dlg );
|
||||
TextView vers = (TextView)view.findViewById( R.id.version_string );
|
||||
vers.setText( String.format( getString( R.string.about_vers_fmt ),
|
||||
getString( R.string.app_version ),
|
||||
BuildConstants.GIT_REV,
|
||||
BuildConstants.BUILD_STAMP ) );
|
||||
vers.setText( getString( R.string.about_vers_fmt,
|
||||
getString( R.string.app_version ),
|
||||
BuildConstants.GIT_REV,
|
||||
BuildConstants.BUILD_STAMP ) );
|
||||
|
||||
TextView xlator = (TextView)view.findViewById( R.id.about_xlator );
|
||||
String str = getString( R.string.xlator );
|
||||
|
|
Loading…
Reference in a new issue