diff options
Diffstat (limited to 'kmines/field.cpp')
-rw-r--r-- | kmines/field.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmines/field.cpp b/kmines/field.cpp index 035b3708..ff3b4e46 100644 --- a/kmines/field.cpp +++ b/kmines/field.cpp @@ -57,7 +57,7 @@ void Field::readSettings() if ( Settings::magicReveal() ) emit setCheating(); } -TQSize Field::tqsizeHint() const +TQSize Field::sizeHint() const { return TQSize(2*frameWidth() + _level.width()*Settings::caseSize(), 2*frameWidth() + _level.height()*Settings::caseSize()); @@ -117,7 +117,7 @@ void Field::changeCase(const Coord &p, CaseState newState) BaseField::changeCase(p, newState); TQPainter painter(this); drawCase(painter, p); - if ( isActive() ) emit updatetqStatus( hasMine(p) ); + if ( isActive() ) emit updateStatus( hasMine(p) ); } TQPoint Field::toPoint(const Coord &p) const |