Custom Query (301 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (136 - 138 of 301)

Ticket Resolution Summary Owner Reporter
#174 fixed DIVE mode not always disabled on Panorama rudi
Description

Our quick Panorama detection hack in gui/painting/qwindowsurface_pm.cpp fails in case the user has multiple GRADDs or GREEXTs installed. In this case the envoronment variables "C1" and "GREEXT" may contain several comma-separated words.

We should either check each word individually or choose a contains(...). Also it might be good to ignore the case.

#175 fixed Fix WebKit useragent string rudi
Description

Currently our WebKit? identifies itself as:

Mozilla/5.0 (Unknown; U; OS/2; en-US)  ....

We should use the same semantics for platform and subplatform as Firefox does:

Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.8.1.21) ....

It's located file src/3rdparty/webkit/WebKit/qt/Api/qwebpage.cpp. We might need some way to determine the OS version.

#176 fixed Extremly poor performance of QDirIterator rudi
Description

Certain file operations (like populating a file dialog from a directory containing a lot of files or expiring a QNetworkDiskCache) take *AGES*. Especially when the underlying file system doesn't have good caching capabilities.

The following code:

    QDirIterator it("some_path");

    while (it.hasNext()) {
        QString path = it.next();
    }

takes on a directory (HPFS) containing 3800 files about 50 seconds (!) to complete, while an opendir/readdir - loop finishes in 2..3 secs. On JFS the performance is better, but not great as well.

Investigating...

Note: See TracQuery for help on using queries.