aboutsummaryrefslogtreecommitdiff
path: root/src/qt/optionsmodel.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <[email protected]>2012-10-02 13:37:19 +0200
committerPhilip Kaufmann <[email protected]>2012-10-02 18:49:57 +0200
commit7bc65ff1083c726391923fddac86e5abc4b0f2db (patch)
treed57063fb6b9888e94fcaf03a2e24d4dfbdc53299 /src/qt/optionsmodel.cpp
parentMerge branch '2012_09_fixwformat' of github.com:laanwj/bitcoin (diff)
downloaddiscoin-7bc65ff1083c726391923fddac86e5abc4b0f2db.tar.xz
discoin-7bc65ff1083c726391923fddac86e5abc4b0f2db.zip
move most explicit getters in optionsmodel to header
- is more consistent and saves quite some lines of code
Diffstat (limited to 'src/qt/optionsmodel.cpp')
-rw-r--r--src/qt/optionsmodel.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/qt/optionsmodel.cpp b/src/qt/optionsmodel.cpp
index caa33414b..f549cb4c7 100644
--- a/src/qt/optionsmodel.cpp
+++ b/src/qt/optionsmodel.cpp
@@ -262,23 +262,3 @@ qint64 OptionsModel::getTransactionFee()
{
return nTransactionFee;
}
-
-bool OptionsModel::getMinimizeToTray()
-{
- return fMinimizeToTray;
-}
-
-bool OptionsModel::getMinimizeOnClose()
-{
- return fMinimizeOnClose;
-}
-
-int OptionsModel::getDisplayUnit()
-{
- return nDisplayUnit;
-}
-
-bool OptionsModel::getDisplayAddresses()
-{
- return bDisplayAddresses;
-}