Custom Query (301 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (34 - 36 of 301)

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Ticket Resolution Summary Owner Reporter
#67 fixed Popup windows are too large Dmitry A. Kuminov
Description

Popup windows (like drop-down menus or combobox lists) sometimes appear too large, much bigger than required by the contents. Investigate and fix it.

#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.

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Note: See TracQuery for help on using queries.