aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2012-05-18 14:11:55 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2012-05-18 14:11:55 +0200
commita3b4caac389021d42bef3adbef2cbb703b0d7eee (patch)
tree91c8dd791c4444a915fef31a12de94fbe83a38ce /src
parent4a9130aca20af3f82b7ddd62afe5ce85a845e425 (diff)
downloadbitcoin-a3b4caac389021d42bef3adbef2cbb703b0d7eee.tar.xz
add an icon for Debug logfile -> Open in the RPC console / add a missing comment in rpcconsole.h
Diffstat (limited to 'src')
-rw-r--r--src/qt/rpcconsole.cpp4
-rw-r--r--src/qt/rpcconsole.h1
2 files changed, 4 insertions, 1 deletions
diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp
index 78dbcd7daa..47f10f92d2 100644
--- a/src/qt/rpcconsole.cpp
+++ b/src/qt/rpcconsole.cpp
@@ -109,7 +109,9 @@ RPCConsole::RPCConsole(QWidget *parent) :
{
ui->setupUi(this);
-#ifndef WIN32
+#ifdef WIN32
+ ui->openDebugLogfileButton->setIcon(QIcon(":/icons/export"));
+#else
// Show Debug logfile label and Open button only for Windows
ui->labelDebugLogfile->setVisible(false);
ui->openDebugLogfileButton->setVisible(false);
diff --git a/src/qt/rpcconsole.h b/src/qt/rpcconsole.h
index 0a7b10f4a2..58e2c8d08a 100644
--- a/src/qt/rpcconsole.h
+++ b/src/qt/rpcconsole.h
@@ -33,6 +33,7 @@ protected:
private slots:
void on_lineEdit_returnPressed();
void on_tabWidget_currentChanged(int index);
+ /** open the debug.log from the current datadir */
void on_openDebugLogfileButton_clicked();
public slots: