diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-06-25 06:49:59 -0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-06-25 06:49:59 -0700 |
| commit | 2849d0661d0c9154924099aafb986552f562d8f7 (patch) | |
| tree | 56e2b3a78833407a884759a3d191c534f6262151 /src | |
| parent | Checkpoint at block 185333 (and remove a couple of intermediate checkpoints) (diff) | |
| parent | Add Bitcoin dev Copyright (diff) | |
| download | discoin-2849d0661d0c9154924099aafb986552f562d8f7.tar.xz discoin-2849d0661d0c9154924099aafb986552f562d8f7.zip | |
Merge pull request #1501 from fanquake/master
QT to Qt
Diffstat (limited to 'src')
| -rw-r--r-- | src/ui_interface.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ui_interface.h b/src/ui_interface.h index b94446cc2..0f7fdef26 100644 --- a/src/ui_interface.h +++ b/src/ui_interface.h @@ -1,4 +1,5 @@ // Copyright (c) 2010 Satoshi Nakamoto +// Copyright (c) 2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_UI_INTERFACE_H @@ -61,10 +62,10 @@ public: /** Show message box. */ boost::signals2::signal<void (const std::string& message, const std::string& caption, int style)> ThreadSafeMessageBox; - /** Ask the user whether he want to pay a fee or not. */ + /** Ask the user whether they want to pay a fee or not. */ boost::signals2::signal<bool (int64 nFeeRequired, const std::string& strCaption), boost::signals2::last_value<bool> > ThreadSafeAskFee; - /** Handle an URL passed on the command line. */ + /** Handle a URL passed at the command line. */ boost::signals2::signal<void (const std::string& strURI)> ThreadSafeHandleURI; /** Progress message during initialization. */ |