diff options
Diffstat (limited to 'ksnake/game.cpp')
-rw-r--r-- | ksnake/game.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ksnake/game.cpp b/ksnake/game.cpp index 9a9e978f..600bbd55 100644 --- a/ksnake/game.cpp +++ b/ksnake/game.cpp @@ -163,7 +163,7 @@ void Game::showSettings(){ // since the filename may contain underscore, they // are replaced with spaces in the menu entry TQString s = TQFileInfo( *it ).baseName(); - s = s.tqreplace(TQRegExp("_"), " "); + s = s.replace(TQRegExp("_"), " "); list.append(s); } } |