summaryrefslogtreecommitdiff
path: root/src/sudokuwidget.h
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2013-07-18 20:52:33 +0000
committerStijn Buys <ingar@osirion.org>2013-07-18 20:52:33 +0000
commit850441d72ad73e6bcf3570e3f62287c28eaead31 (patch)
tree7d6fabb8b2caff0a906dfbe952248f74ef2c93fc /src/sudokuwidget.h
parent46ad6cc7c4be62c1c3971f56d4d6b09fc26f08c4 (diff)
Solves a bug where the overwrite file warning shows the wrong filename,
adds a visual indication if a sudoku grid has been solved.
Diffstat (limited to 'src/sudokuwidget.h')
-rw-r--r--src/sudokuwidget.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sudokuwidget.h b/src/sudokuwidget.h
index e4140a0..9ca6098 100644
--- a/src/sudokuwidget.h
+++ b/src/sudokuwidget.h
@@ -30,7 +30,7 @@ public:
* @brief return the default size hint for this widget
* */
virtual QSize sizeHint() const;
-
+
protected:
/**
* @brief handle paint events
@@ -46,6 +46,8 @@ private:
QLineEdit * sudokuwidget_value[9][9];
private slots:
+ void verify();
+
void verify(const QString & text);
};