Skip to content

Commit

Permalink
A Qt GUI Update
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostlander committed Nov 9, 2013
1 parent 2d919b8 commit 42fc486
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/qt/askpassphrasedialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ void AskPassphraseDialog::accept()
break;
}
QMessageBox::StandardButton retval = QMessageBox::question(this, tr("Confirm wallet encryption"),
tr("WARNING: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR PHENIXCOINS</b>!\nAre you sure you wish to encrypt your wallet?"),
tr("WARNING: If you encrypt your wallet and forget your passphrase, you <b>LOSE ALL OF YOUR PXC</b> stored!\nAre you sure you wish to encrypt your wallet?"),
QMessageBox::Yes|QMessageBox::Cancel,
QMessageBox::Cancel);
if(retval == QMessageBox::Yes)
Expand Down
6 changes: 3 additions & 3 deletions src/qt/bitcoinunits.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ int BitcoinUnits::amountDigits(int unit)
{
switch(unit)
{
case BTC: return 8; // 21,000,000 (# digits, without commas)
case mBTC: return 11; // 21,000,000,000
case uBTC: return 14; // 21,000,000,000,000
case BTC: return 9; // 100,000,000 (# digits, without commas)
case mBTC: return 12; // 100,000,000,000
case uBTC: return 15; // 100,000,000,000,000
default: return 0;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/qt/clientmodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ int ClientModel::getHashrate() const
return (boost::int64_t)dHashesPerSec;
}

// Litecoin: copied from bitcoinrpc.cpp.
// copied from bitcoinrpc.cpp
double ClientModel::GetDifficulty() const
{
// Floating point number that is a multiple of the minimum difficulty,
Expand Down
2 changes: 1 addition & 1 deletion src/qt/overviewpage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include <QPainter>

#define DECORATION_SIZE 64
#define NUM_ITEMS 3
#define NUM_ITEMS 6

class TxViewDelegate : public QAbstractItemDelegate
{
Expand Down

0 comments on commit 42fc486

Please sign in to comment.