aboutsummaryrefslogtreecommitdiff
path: root/BitcoinGUI.h
diff options
context:
space:
mode:
Diffstat (limited to 'BitcoinGUI.h')
-rw-r--r--BitcoinGUI.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/BitcoinGUI.h b/BitcoinGUI.h
index e4ff2fe61a..590bb3efb7 100644
--- a/BitcoinGUI.h
+++ b/BitcoinGUI.h
@@ -1,5 +1,5 @@
-#ifndef H_BITCOINGUI
-#define H_BITCOINGUI
+#ifndef BITCOINGUI_H
+#define BITCOINGUI_H
#include <QMainWindow>
@@ -7,14 +7,14 @@ class BitcoinGUI : public QMainWindow
{
Q_OBJECT
public:
- BitcoinGUI(QWidget *parent = 0);
+ explicit BitcoinGUI(QWidget *parent = 0);
/* Transaction table tab indices */
enum {
- ALL_TRANSACTIONS = 0,
- SENT_RECEIVED = 1,
- SENT = 2,
- RECEIVED = 3
+ AllTransactions = 0,
+ SentReceived = 1,
+ Sent = 2,
+ Received = 3
} TabIndex;
private slots:
void currentChanged(int tab);