add an icon for Debug logfile -> Open in the RPC console / add a missing comment in rpcconsole.h

This commit is contained in:
Philip Kaufmann 2012-05-18 14:11:55 +02:00
parent 4a9130aca2
commit a3b4caac38
2 changed files with 4 additions and 1 deletions

View File

@ -109,7 +109,9 @@ RPCConsole::RPCConsole(QWidget *parent) :
{ {
ui->setupUi(this); ui->setupUi(this);
#ifndef WIN32 #ifdef WIN32
ui->openDebugLogfileButton->setIcon(QIcon(":/icons/export"));
#else
// Show Debug logfile label and Open button only for Windows // Show Debug logfile label and Open button only for Windows
ui->labelDebugLogfile->setVisible(false); ui->labelDebugLogfile->setVisible(false);
ui->openDebugLogfileButton->setVisible(false); ui->openDebugLogfileButton->setVisible(false);

View File

@ -33,6 +33,7 @@ protected:
private slots: private slots:
void on_lineEdit_returnPressed(); void on_lineEdit_returnPressed();
void on_tabWidget_currentChanged(int index); void on_tabWidget_currentChanged(int index);
/** open the debug.log from the current datadir */
void on_openDebugLogfileButton_clicked(); void on_openDebugLogfileButton_clicked();
public slots: public slots: