Custom Query (301 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (268 - 270 of 301)

Ticket Owner Reporter Resolution Summary
#67 Dmitry A. Kuminov fixed Popup windows are too large
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 Dmitry A. Kuminov fixed Dead keys are not processed correctly
Description

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

#69 Dmitry A. Kuminov fixed QProcess cannot start process
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.

Note: See TracQuery for help on using queries.