aboutsummaryrefslogtreecommitdiff
path: root/src/qt/optionsmodel.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-03-14 07:22:59 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2014-03-14 07:22:59 +0100
commitb40bdd6532bdba3d157c8a2dd4661ee540a6fbb4 (patch)
treede75cbe6c566b065f620b72cca5638fb5fe35d8b /src/qt/optionsmodel.h
parent1e13f57f561dcba493e569bf8fb6507383c62796 (diff)
downloadbitcoin-b40bdd6532bdba3d157c8a2dd4661ee540a6fbb4.tar.xz
qt: Show also value for options overridden on command line
Currently only the name of the option is shown for GUI options overridden by command line (or configuration file). This commit adds the value of the options as well, which is useful for troubleshooting.
Diffstat (limited to 'src/qt/optionsmodel.h')
-rw-r--r--src/qt/optionsmodel.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qt/optionsmodel.h b/src/qt/optionsmodel.h
index a3487ddd2e..ece5ef78a4 100644
--- a/src/qt/optionsmodel.h
+++ b/src/qt/optionsmodel.h
@@ -75,6 +75,9 @@ private:
/* settings that were overriden by command-line */
QString strOverriddenByCommandLine;
+ /// Add option to list of GUI options overridden through command line/config file
+ void addOverriddenOption(const std::string &option);
+
signals:
void displayUnitChanged(int unit);
void transactionFeeChanged(qint64);