summaryrefslogtreecommitdiff
path: root/noncore/games
Side-by-side diff
Diffstat (limited to 'noncore/games') (more/less context) (show 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
@@ -69,34 +69,34 @@ protected:
void paletteChange( const QPalette & );
void updateCell( int r, int c );
bool onBoard( int r, int c ) const { return r >= 0 && r < numRows && c >= 0 && c < numCols; }
Mine *mine( int row, int col ) { return onBoard(row, col ) ? mines[row+numCols*col] : 0; }
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;
int cellSize;
QTimer *holdTimer;
Mine **mines;
};