diff options
Diffstat (limited to 'kreversi/Move.cpp')
-rw-r--r-- | kreversi/Move.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kreversi/Move.cpp b/kreversi/Move.cpp index f1f50872..3916925e 100644 --- a/kreversi/Move.cpp +++ b/kreversi/Move.cpp @@ -66,7 +66,7 @@ TQString SimpleMove::asString() const if (m_x == -1) return TQString("pass"); else - return TQString("%1%2").tqarg(" ABCDEFGH"[m_x]).tqarg(" 12345678"[m_y]); + return TQString("%1%2").arg(" ABCDEFGH"[m_x]).arg(" 12345678"[m_y]); } |