# HG changeset patch # User Chris Cannam # Date 1291204204 0 # Node ID 46bf2a4a1fc83ed33db9b510439649ce887721f7 # Parent e6c6b88d19b9a7db59e82e420f6e0a8513f4cd6e * Don't try to use stdout and stderr as identifiers! In any case, one of them is stderr diff -r e6c6b88d19b9 -r 46bf2a4a1fc8 hgrunner.h --- 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(); diff -r e6c6b88d19b9 -r 46bf2a4a1fc8 mainwindow.h --- 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: