aboutsummaryrefslogtreecommitdiff
path: root/src/qt/rpcconsole.h
diff options
context:
space:
mode:
authorGregory Maxwell <gmaxwell@gmail.com>2012-05-12 15:33:57 -0700
committerGregory Maxwell <gmaxwell@gmail.com>2012-05-12 15:33:57 -0700
commit85a22292648cf64918c44b494c78574924ed7acc (patch)
tree6469f7c60ac3bb25b939a47953b2d682750b9856 /src/qt/rpcconsole.h
parent839c4e796694c735f73e29e01ae161eb95855c0e (diff)
parentae744c8b78a78a21cd44e10b65a600ff0c07d250 (diff)
Merge pull request #1269 from laanwj/2012_05_consoleimprovements
UI console improvements
Diffstat (limited to 'src/qt/rpcconsole.h')
-rw-r--r--src/qt/rpcconsole.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/qt/rpcconsole.h b/src/qt/rpcconsole.h
index 30948eaad2..9c4fab497e 100644
--- a/src/qt/rpcconsole.h
+++ b/src/qt/rpcconsole.h
@@ -37,15 +37,13 @@ private slots:
public slots:
void clear();
- void message(int category, const QString &message);
+ void message(int category, const QString &message, bool html = false);
/** Set number of connections shown in the UI */
void setNumConnections(int count);
/** Set number of blocks shown in the UI */
void setNumBlocks(int count);
/** Go forward or back in history */
void browseHistory(int offset);
- /** Copy currently selected message to clipboard */
- void copyMessage();
signals:
// For RPC command executor
@@ -55,7 +53,6 @@ signals:
private:
Ui::RPCConsole *ui;
ClientModel *clientModel;
- bool firstLayout;
QStringList history;
int historyPtr;