diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2013-11-10 19:19:30 +0100 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2013-11-10 19:21:03 +0100 |
commit | f76c122e2eac8ef66f69d142231bd33c88a24c50 (patch) | |
tree | d2f910390e55aef857023812fbdaefdd66cd99ff /src/noui.cpp | |
parent | 7c4c207be8420d394a5abc4368d1bb69ad4f8067 (diff) | |
parent | 51ed9ec971614aebdbfbd9527aba365dd0afd437 (diff) |
Merge pull request #2767
51ed9ec Cleanup code using forward declarations. (Brandon Dahler)
Diffstat (limited to 'src/noui.cpp')
-rw-r--r-- | src/noui.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/noui.cpp b/src/noui.cpp index 06c507d0e5..fd285c5719 100644 --- a/src/noui.cpp +++ b/src/noui.cpp @@ -3,10 +3,12 @@ // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. +#include "noui.h" + #include "ui_interface.h" -#include "init.h" -#include "bitcoinrpc.h" +#include "util.h" +#include <stdint.h> #include <string> static bool noui_ThreadSafeMessageBox(const std::string& message, const std::string& caption, unsigned int style) @@ -32,7 +34,7 @@ static bool noui_ThreadSafeMessageBox(const std::string& message, const std::str return false; } -static bool noui_ThreadSafeAskFee(int64 /*nFeeRequired*/) +static bool noui_ThreadSafeAskFee(int64_t /*nFeeRequired*/) { return true; } |