mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-13 08:05:55 +01:00
2019-01-09 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdpadengined(8) that caused PyPAD script errors to fail to be logged.
This commit is contained in:
@@ -37,6 +37,7 @@ class RDProcess : public QObject
|
||||
QString errorText() const;
|
||||
void *privateData() const;
|
||||
void setPrivateData(void *priv);
|
||||
QByteArray standardErrorData() const;
|
||||
|
||||
signals:
|
||||
void started(int id);
|
||||
@@ -45,6 +46,7 @@ class RDProcess : public QObject
|
||||
private slots:
|
||||
void startedData();
|
||||
void finishedData(int exit_code,QProcess::ExitStatus status);
|
||||
void readyReadStandardErrorData();
|
||||
|
||||
private:
|
||||
int p_id;
|
||||
@@ -53,6 +55,7 @@ class RDProcess : public QObject
|
||||
QProcess *p_process;
|
||||
QString p_error_text;
|
||||
void *p_private_data;
|
||||
QByteArray p_standard_error_data;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user