aboutsummaryrefslogtreecommitdiff
path: root/src/qt
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2012-07-26 03:25:26 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2012-08-01 17:50:00 +0000
commitb49f1398a1a02eab06def81a9d25b972c81b8fe1 (patch)
treec6f51d9b5cbf00b334c5311391c55d828fa29753 /src/qt
parent3c726dd3c07acdda465522f027ba115b4185afaf (diff)
downloadbitcoin-b49f1398a1a02eab06def81a9d25b972c81b8fe1.tar.xz
Bugfix: Correct English grammar regarding "'s"
Diffstat (limited to 'src/qt')
-rw-r--r--src/qt/bitcoin.cpp2
-rw-r--r--src/qt/bitcoingui.cpp2
-rw-r--r--src/qt/bitcoinunits.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp
index 7fcfd0dec7..42bfcfd0b2 100644
--- a/src/qt/bitcoin.cpp
+++ b/src/qt/bitcoin.cpp
@@ -299,7 +299,7 @@ int main(int argc, char *argv[])
window.setWalletModel(0);
guiref = 0;
}
- // Shutdown the core and it's threads, but don't exit Bitcoin-Qt here
+ // Shutdown the core and its threads, but don't exit Bitcoin-Qt here
Shutdown(NULL);
}
else
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp
index b1a0d978c3..7e6ad15d6a 100644
--- a/src/qt/bitcoingui.cpp
+++ b/src/qt/bitcoingui.cpp
@@ -492,7 +492,7 @@ void BitcoinGUI::setNumConnections(int count)
void BitcoinGUI::setNumBlocks(int count, int nTotalBlocks)
{
- // don't show / hide progressBar and it's label if we have no connection(s) to the network
+ // don't show / hide progressBar and its label if we have no connection(s) to the network
if (!clientModel || clientModel->getNumConnections() == 0)
{
progressBarLabel->setVisible(false);
diff --git a/src/qt/bitcoinunits.cpp b/src/qt/bitcoinunits.cpp
index 9a9a4890dc..d4715abaec 100644
--- a/src/qt/bitcoinunits.cpp
+++ b/src/qt/bitcoinunits.cpp
@@ -99,7 +99,7 @@ QString BitcoinUnits::format(int unit, qint64 n, bool fPlus)
QString quotient_str = QString::number(quotient);
QString remainder_str = QString::number(remainder).rightJustified(num_decimals, '0');
- // Right-trim excess 0's after the decimal point
+ // Right-trim excess zeros after the decimal point
int nTrim = 0;
for (int i = remainder_str.size()-1; i>=2 && (remainder_str.at(i) == '0'); --i)
++nTrim;