diff options
| author | 2008-10-16 12:28:36 +0000 | |
|---|---|---|
| committer | 2008-10-16 12:28:36 +0000 | |
| commit | 9e0effdc52a48f6ffe9ee04451b762c639fff688 (patch) | |
| tree | 164e8410bc97a71420dcfef8a9b018e8adb7ee2f /src/modules/objects/class_process.h | |
| parent | some fixes on the notifier (diff) | |
| download | KVIrc-9e0effdc52a48f6ffe9ee04451b762c639fff688.tar.gz KVIrc-9e0effdc52a48f6ffe9ee04451b762c639fff688.tar.bz2 KVIrc-9e0effdc52a48f6ffe9ee04451b762c639fff688.zip | |
more works on objects module (locale stuff+some fixes+code clean)
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@2742 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/objects/class_process.h')
| -rw-r--r-- | src/modules/objects/class_process.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/modules/objects/class_process.h b/src/modules/objects/class_process.h index f9133a943..9ace08789 100644 --- a/src/modules/objects/class_process.h +++ b/src/modules/objects/class_process.h @@ -45,20 +45,20 @@ private: QStringList args; public: - bool functionaddArgument(KviKvsObjectFunctionCall *c); - bool functionstartProcess(KviKvsObjectFunctionCall *c); - bool functionreadStdout(KviKvsObjectFunctionCall *c); - bool functionreadStderr(KviKvsObjectFunctionCall *c); - bool functionwriteToStdin(KviKvsObjectFunctionCall *c); - bool functionclosekill(KviKvsObjectFunctionCall *c); - bool functioncloseStdin(KviKvsObjectFunctionCall *c); - bool functionkill(KviKvsObjectFunctionCall *c); - bool functiontryTerminate(KviKvsObjectFunctionCall *c); - bool functionnormalExit(KviKvsObjectFunctionCall *c); - bool functionisRunning(KviKvsObjectFunctionCall *c); + bool addArgument(KviKvsObjectFunctionCall *c); + bool startProcess(KviKvsObjectFunctionCall *c); + bool readStdout(KviKvsObjectFunctionCall *c); + bool readStderr(KviKvsObjectFunctionCall *c); + bool writeToStdin(KviKvsObjectFunctionCall *c); + bool closekill(KviKvsObjectFunctionCall *c); + bool closeStdin(KviKvsObjectFunctionCall *c); + bool kill(KviKvsObjectFunctionCall *c); + bool tryTerminate(KviKvsObjectFunctionCall *c); + bool normalExit(KviKvsObjectFunctionCall *c); + bool isRunning(KviKvsObjectFunctionCall *c); - bool functionreadyReadStdoutEvent(KviKvsObjectFunctionCall *c); - bool functionreadyReadStderrEvent(KviKvsObjectFunctionCall *c); + bool readyReadStdoutEvent(KviKvsObjectFunctionCall *c); + bool readyReadStderrEvent(KviKvsObjectFunctionCall *c); protected slots: void slotReadStdout(); |
