summaryrefslogtreecommitdiff
path: root/noncore/games/minesweep/minefield.h
Side-by-side diff
Diffstat (limited to 'noncore/games/minesweep/minefield.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/minesweep/minefield.h4
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
@@ -73,26 +73,26 @@ protected:
const Mine *mine( int row, int col ) const { return onBoard(row, col ) ? mines[row+numCols*col] : 0; }
protected slots:
void cellPressed( int row, int col );
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;
int mineguess;
int nonminecount;
int lev;
QRect availableRect;