diff options
author | Russell Yanofsky <russ@yanofsky.org> | 2017-04-17 15:44:10 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2018-04-04 16:52:40 -0400 |
commit | d7c2c9594897c39df6739b92610dfb5a7a1cb3ec (patch) | |
tree | 0b8355cffe4a206c43051ada4f2b796b2a6ccf2c /src/qt/intro.h | |
parent | fe6f27e6ea68a139d3a98b30a53706008ef8b132 (diff) |
Remove direct bitcoin calls from qt/intro.cpp
Diffstat (limited to 'src/qt/intro.h')
-rw-r--r-- | src/qt/intro.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/qt/intro.h b/src/qt/intro.h index 5b428b379c..07d2025bb6 100644 --- a/src/qt/intro.h +++ b/src/qt/intro.h @@ -13,6 +13,10 @@ static const bool DEFAULT_CHOOSE_DATADIR = false; class FreespaceChecker; +namespace interface { + class Node; +} + namespace Ui { class Intro; } @@ -41,7 +45,7 @@ public: * @note do NOT call global GetDataDir() before calling this function, this * will cause the wrong path to be cached. */ - static bool pickDataDirectory(); + static bool pickDataDirectory(interface::Node& node); /** * Determine default data directory for operating system. |