diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2011-06-18 11:53:25 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2011-06-18 11:53:25 +0200 |
commit | 0f3981bea94cea957f0de4b128f7feffbfc2d9c6 (patch) | |
tree | 28b8fa9cf6dfdbf9b2f1358c35327264adfe200d /src/qt/bitcoin.cpp | |
parent | aa5297266093eccd984a2d8fb20499617ef96c81 (diff) |
remove commented code, use // for one-line comments and comments inside functions
Diffstat (limited to 'src/qt/bitcoin.cpp')
-rw-r--r-- | src/qt/bitcoin.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index a71c348254..cb24c1901d 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -57,9 +57,8 @@ bool ThreadSafeAskFee(int64 nFeeRequired, const std::string& strCaption, wxWindo return true; bool payFee = false; - /* Call slot on GUI thread. - If called from another thread, use a blocking QueuedConnection. - */ + // Call slot on GUI thread. + // If called from another thread, use a blocking QueuedConnection. Qt::ConnectionType connectionType = Qt::DirectConnection; if(QThread::currentThread() != QCoreApplication::instance()->thread()) { |