Skip to content

Commit 908d56c

Browse files
committed
src:Fix processInfo return type in conptyprocess.h and
winptyprocess.h Signed-off-by: xiaoiming <2014500726@smail.xtu.edu.cn>
1 parent 9cfb1f0 commit 908d56c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/ptyqt/conptyprocess.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ class ConPtyProcess : public IPtyProcess
142142
virtual QString currentDir();
143143
virtual bool hasChildProcess();
144144
virtual QList<QPair<int, QString>> childProcessInfoList();
145-
virtual <int, QString> processInfo();
145+
virtual QPair<int, QString> processInfo();
146146
bool isAvailable();
147147
void moveToThread(QThread *targetThread);
148148

lib/ptyqt/winptyprocess.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class WinPtyProcess : public IPtyProcess
2222
QString currentDir();
2323
virtual bool hasChildProcess();
2424
virtual QList<QPair<int, QString>> childProcessInfoList();
25-
virtual <int, QString> processInfo();
25+
virtual QPair<int, QString> processInfo();
2626
bool isAvailable();
2727
void moveToThread(QThread *targetThread);
2828

0 commit comments

Comments
 (0)