Custom Query (301 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (82 - 84 of 301)

Ticket Resolution Summary Owner Reporter
#68 fixed Dead keys are not processed correctly Dmitry A. Kuminov
Description

Dead keys (ones intended to produce composite characters) are not correctly processed by Qt at the moment.

#69 fixed QProcess cannot start process Dmitry A. Kuminov
Description

The following simple program:

	qDebug() << "Starting...";
	QProcess proc;    
	proc.start("cmd.exe");
	qDebug() << "Waiting for finished...";
	proc.waitForFinished();
	qDebug() << "DONE";

terminates immediately with the following output:

Starting...
Waiting for finished...
DONE
QProcess: Destroyed while process is still running.

Apparently, nothing is started.

#70 fixed Standard I/O streams of non-kLIBC based processes are not properly redirected Dmitry A. Kuminov
Description

If QProcess starts an application that isn't based on the same (kLIBC) runtime as Qt4 itself, its standard streams are not properly redirected and cannot be accessed in the parent process.

This needs to be fixed. See #69 for more info.

Note: See TracQuery for help on using queries.