-rw-r--r-- | noncore/games/minesweep/minefield.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/games/minesweep/minefield.h b/noncore/games/minesweep/minefield.h index e243d77..8d0f754 100644 --- a/noncore/games/minesweep/minefield.h +++ b/noncore/games/minesweep/minefield.h @@ -77,18 +77,18 @@ protected slots: void cellClicked( int row, int col ); void held(); private: int findCellSize(); void setCellSize( int ); State stat; - void MineField::setState( State st ); - void MineField::placeMines(); + void setState( State st ); + void placeMines(); enum FlagAction { NoAction, FlagOn, FlagNext }; FlagAction flagAction; bool ignoreClick; int currRow; int currCol; int numRows, numCols; int minecount; |