diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bignum.h | 2 | ||||
-rw-r--r-- | src/main.h | 2 | ||||
-rw-r--r-- | src/netbase.h | 2 | ||||
-rw-r--r-- | src/qt/bitcoingui.cpp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/bignum.h b/src/bignum.h index c7c2ff1730..95e21977e7 100644 --- a/src/bignum.h +++ b/src/bignum.h @@ -47,7 +47,7 @@ public: }; -/** C++ wrapper for BIGNUM (OpenSSl bignum) */ +/** C++ wrapper for BIGNUM (OpenSSL bignum) */ class CBigNum : public BIGNUM { public: diff --git a/src/main.h b/src/main.h index 18d5dbdd74..16159e18b5 100644 --- a/src/main.h +++ b/src/main.h @@ -26,7 +26,7 @@ class CInv; class CRequestTracker; class CNode; -static const int CLIENT_VERSION = 60006; +static const int CLIENT_VERSION = 60099; static const bool VERSION_IS_BETA = true; extern const std::string CLIENT_NAME; diff --git a/src/netbase.h b/src/netbase.h index b5f9d5fad9..43189c37e2 100644 --- a/src/netbase.h +++ b/src/netbase.h @@ -81,7 +81,7 @@ class CNetAddr ) }; -/** A combnation of a network address (CNetAddr) and a (TCP) port */ +/** A combination of a network address (CNetAddr) and a (TCP) port */ class CService : public CNetAddr { protected: diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 7bce1286c7..91696310b4 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -376,7 +376,7 @@ void BitcoinGUI::createTrayIcon() trayIcon = new QSystemTrayIcon(this); trayIconMenu = new QMenu(this); trayIcon->setContextMenu(trayIconMenu); - trayIcon->setToolTip("Bitcoin client"); + trayIcon->setToolTip(tr("Bitcoin client")); trayIcon->setIcon(QIcon(":/icons/toolbar")); connect(trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)), this, SLOT(trayIconActivated(QSystemTrayIcon::ActivationReason))); |