Hello

I have an instance of QProcess and I am reading data lines from it's stdout.

The problem is that I want to read the most recent line written to stdout but when I call readLine() I get an old line (which is the first line added to the buffer)

How do I read the latest line written to QProcess's stdout?