Skip to content

Commit

Permalink
[Qt] additional small fixes for #3099 (new receive flow)
Browse files Browse the repository at this point in the history
- remove 2 unneeded windowTitle attributes, which bloat our translations
- cleanup some unneeded .cpp/.h includes and class usages
- use a more generic string for clearing sendcoinsdialog and
  requestpaymentdialog
- edit 2 strings in BitcoinGUI and replace "edit" with "show" as this
  seems more clear in the context where it is used
  • Loading branch information
Philip Kaufmann committed Oct 26, 2013
1 parent e213005 commit 4751df0
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 17 deletions.
6 changes: 2 additions & 4 deletions src/qt/bitcoingui.cpp
Expand Up @@ -7,14 +7,12 @@

#include "bitcoingui.h"

#include "transactiontablemodel.h"
#include "optionsdialog.h"
#include "aboutdialog.h"
#include "clientmodel.h"
#include "walletmodel.h"
#include "walletframe.h"
#include "optionsmodel.h"
#include "transactiondescdialog.h"
#include "bitcoinunits.h"
#include "guiconstants.h"
#include "notificator.h"
Expand Down Expand Up @@ -258,9 +256,9 @@ void BitcoinGUI::createActions(bool fIsTestnet)
openRPCConsoleAction->setStatusTip(tr("Open debugging and diagnostic console"));

usedSendingAddressesAction = new QAction(QIcon(":/icons/address-book"), tr("&Used sending addresses..."), this);
usedSendingAddressesAction->setStatusTip(tr("Edit the list of used sending addresses and labels"));
usedSendingAddressesAction->setStatusTip(tr("Show the list of used sending addresses and labels"));
usedReceivingAddressesAction = new QAction(QIcon(":/icons/address-book"), tr("Used &receiving addresses..."), this);
usedReceivingAddressesAction->setStatusTip(tr("Edit the list of used receiving addresses and labels"));
usedReceivingAddressesAction->setStatusTip(tr("Show the list of used receiving addresses and labels"));

connect(quitAction, SIGNAL(triggered()), qApp, SLOT(quit()));
connect(aboutAction, SIGNAL(triggered()), this, SLOT(aboutClicked()));
Expand Down
5 changes: 1 addition & 4 deletions src/qt/bitcoingui.h
Expand Up @@ -5,13 +5,11 @@
#include <QSystemTrayIcon>
#include <QMap>

class TransactionTableModel;
class WalletFrame;
class WalletView;
class ClientModel;
class WalletModel;
class WalletStack;
class TransactionView;
class OverviewPage;
class SendCoinsDialog;
class SendCoinsRecipient;
Expand Down Expand Up @@ -50,11 +48,11 @@ class BitcoinGUI : public QMainWindow
The client model represents the part of the core that communicates with the P2P network, and is wallet-agnostic.
*/
void setClientModel(ClientModel *clientModel);

/** Set the wallet model.
The wallet model represents a bitcoin wallet, and offers access to the list of transactions, address book and sending
functionality.
*/

bool addWallet(const QString& name, WalletModel *walletModel);
bool setCurrentWallet(const QString& name);

Expand Down Expand Up @@ -98,7 +96,6 @@ class BitcoinGUI : public QMainWindow

QSystemTrayIcon *trayIcon;
Notificator *notificator;
TransactionView *transactionView;
RPCConsole *rpcConsole;

QMovie *syncIconMovie;
Expand Down
5 changes: 1 addition & 4 deletions src/qt/forms/receivecoinsdialog.ui
Expand Up @@ -10,9 +10,6 @@
<height>343</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QFormLayout" name="formLayout">
Expand Down Expand Up @@ -113,7 +110,7 @@
</sizepolicy>
</property>
<property name="toolTip">
<string>Remove all transaction fields</string>
<string>Clear all fields of the form.</string>
</property>
<property name="text">
<string>Clear</string>
Expand Down
3 changes: 0 additions & 3 deletions src/qt/forms/receiverequestdialog.ui
Expand Up @@ -10,9 +10,6 @@
<height>597</height>
</rect>
</property>
<property name="windowTitle">
<string>Request coins</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_3">
<item>
<widget class="QRImageWidget" name="lblQRCode">
Expand Down
2 changes: 1 addition & 1 deletion src/qt/forms/sendcoinsdialog.ui
Expand Up @@ -84,7 +84,7 @@
</sizepolicy>
</property>
<property name="toolTip">
<string>Remove all transaction fields</string>
<string>Clear all fields of the form.</string>
</property>
<property name="text">
<string>Clear &amp;All</string>
Expand Down
1 change: 0 additions & 1 deletion src/qt/sendcoinsdialog.cpp
Expand Up @@ -3,7 +3,6 @@

#include "walletmodel.h"
#include "bitcoinunits.h"
#include "addressbookpage.h"
#include "optionsmodel.h"
#include "sendcoinsentry.h"
#include "guiutil.h"
Expand Down

0 comments on commit 4751df0

Please sign in to comment.