X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fclient%2Fexecwrapper.h;h=5f3fcce7b4e2f5884640e670718948da103d442d;hb=c1cf157116de7fc3da96203aa6f03c38c7ebb650;hp=015b8a618c40735ef4727e8a0c67973f46b2801f;hpb=68878dc8366f2f4a0afe132847aad9a51a80cdbf;p=quassel.git diff --git a/src/client/execwrapper.h b/src/client/execwrapper.h index 015b8a61..5f3fcce7 100644 --- a/src/client/execwrapper.h +++ b/src/client/execwrapper.h @@ -30,14 +30,14 @@ class ExecWrapper : public QObject Q_OBJECT public: - ExecWrapper(QObject *parent = 0); + ExecWrapper(QObject* parent = nullptr); public slots: - void start(const BufferInfo &info, const QString &command); + void start(const BufferInfo& info, const QString& command); signals: - void error(const QString &errorMsg); - void output(const QString &out); + void error(const QString& errorMsg); + void output(const QString& out); private slots: void processReadStdout(); @@ -45,8 +45,8 @@ private slots: void processFinished(int exitCode, QProcess::ExitStatus exitStatus); void processError(QProcess::ProcessError); - void postStdout(const QString &); - void postStderr(const QString &); + void postStdout(const QString&); + void postStderr(const QString&); private: QProcess _process; @@ -56,5 +56,4 @@ private: QString _stderrBuffer; }; - #endif