diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-12-05 23:30:06 -0800 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-12-05 23:30:06 -0800 |
| commit | 25fd38090a96fbfc755fb2e3058eafd828e84573 (patch) | |
| tree | 3967a0f95373515562f2ddae28b5ae341d1a8f59 /src/noui.cpp | |
| parent | Merge pull request #2056 from sipa/fix_2052 (diff) | |
| parent | rework ThreadSafeAskFee() / askFee() functions (diff) | |
| download | discoin-25fd38090a96fbfc755fb2e3058eafd828e84573.tar.xz discoin-25fd38090a96fbfc755fb2e3058eafd828e84573.zip | |
Merge pull request #2066 from Diapolo/small_uiint_changes
UI interface changes
Diffstat (limited to 'src/noui.cpp')
| -rw-r--r-- | src/noui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/noui.cpp b/src/noui.cpp index ba2b1aab4..204e76aba 100644 --- a/src/noui.cpp +++ b/src/noui.cpp @@ -32,7 +32,7 @@ static int noui_ThreadSafeMessageBox(const std::string& message, const std::stri return 4; } -static bool noui_ThreadSafeAskFee(int64 nFeeRequired, const std::string& strCaption) +static bool noui_ThreadSafeAskFee(int64 /*nFeeRequired*/) { return true; } |