[Kde-games-devel] [PATCH] KShisen: remember last entered player name

Dave Corrie kde-games-devel@mail.kde.org
Wed, 1 Jan 2003 22:14:38 +0000


Hi Marc,

Can't these lines...

  if ( !lastPlayerName.isEmpty() )
    e->setText( lastPlayerName );
  else
    e->setText("");

...be simplified to...

  e->setText( lastPlayerName );

...?

Other than that, please go ahead and apply. Thanks!

-- 
Dave

On Wednesday 1 January 2003 11:33 am, Marc Mutz wrote:
> This patch fixes an annoying "usablility bug" in KShisen: It doesn't
> remember the last used player name, so you always have to re-enter it
> (well, at least when you make it into the high score list).
>
> OK to apply to 3_1_BRANCH?