From 850441d72ad73e6bcf3570e3f62287c28eaead31 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Thu, 18 Jul 2013 20:52:33 +0000 Subject: Solves a bug where the overwrite file warning shows the wrong filename, adds a visual indication if a sudoku grid has been solved. --- src/settings.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/settings.h') diff --git a/src/settings.h b/src/settings.h index 319bcb1..229d67a 100644 --- a/src/settings.h +++ b/src/settings.h @@ -22,10 +22,16 @@ public: return m_colorInputError; } + inline const QColor & colorSolved() const + { + return m_colorSolved; + } + private: QString m_homePath; QColor m_colorInvalidValue; QColor m_colorInputError; + QColor m_colorSolved; }; const Settings & globalSettings(); -- cgit v1.2.3