Mercurial > hg > easyhg
changeset 142:46bf2a4a1fc8
* Don't try to use stdout and stderr as identifiers! In any case, one of them is stderr
author | Chris Cannam |
---|---|
date | Wed, 01 Dec 2010 11:50:04 +0000 |
parents | e6c6b88d19b9 |
children | f61f032b06f9 |
files | hgrunner.h mainwindow.h |
diffstat | 2 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/hgrunner.h Tue Nov 30 17:56:11 2010 +0000 +++ b/hgrunner.h Wed Dec 01 11:50:04 2010 +0000 @@ -39,8 +39,8 @@ void requestAction(HgAction action); signals: - void commandCompleted(HgAction action, QString stdout); - void commandFailed(HgAction action, QString stderr); + void commandCompleted(HgAction action, QString stdOut); + void commandFailed(HgAction action, QString stdErr); private slots: void started();
--- a/mainwindow.h Tue Nov 30 17:56:11 2010 +0000 +++ b/mainwindow.h Wed Dec 01 11:50:04 2010 +0000 @@ -57,8 +57,8 @@ public slots: void hgRefresh(); - void commandCompleted(HgAction action, QString stdout); - void commandFailed(HgAction action, QString stdout); + void commandCompleted(HgAction action, QString stdOut); + void commandFailed(HgAction action, QString stdErr); void enableDisableActions(); private slots: