Custom Query (301 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (85 - 87 of 301)

Ticket Resolution Summary Owner Reporter
#223 fixed QDir::cleanPath() broken rudi
Description

Currently QDir::cleanPath() strips trailing separators from root directories. This due to a #ifdef thatwas not present in 4.6.

#222 fixed Instantiating QApplication modifies floating point control word. rudi
Description

The following code:

int main(int argc, char *arg[])
{
  qDebug("FCW: %04x", _control87(0, 0) );

  QApplication  a(argc, argv);

  qDebug("FCW: %04x", _control87(0, 0) );

  ...
}

produces:

FCW: 037f
FCW: 0367

I.O.W., it enables floating point overflow and underflow exceptions. I don't think that this should happen.

#221 fixed Add QtDeclarative rudi
Description

In order to build QtCreator? we need the QtDeclarative library. I just learned that this library uses the same type of code, that caused the SIGFPE in Creator's QMLJS.DLL. Find my fix attached.

Note: See TracQuery for help on using queries.