Details
-
Bug
-
Resolution: Out of scope
-
P2: Important
-
4.5.0
-
None
Description
Running the Qt4 test case below results in the loss of the "alt" tag, whereas in the Qt3 version it doesn't happen.
Qt4 test case:
//----------------------
#include <QtGui>
class Test: public QMainWindow
{
public:
Test( QWidget * parent = 0 )
: QMainWindow( parent )
};
int main( int argc, char * argv[] )
{
QApplication a( argc, argv );
Test t;
t.resize( 700, 800 );
t.show();
return a.exec();
}
Qt3 test case:
//----------------------
#include <qapplication.h>
#include <qmainwindow.h>
#include <qtextedit.h>
class Test: public QMainWindow
{
public:
Test( QWidget * parent = 0, const char * name = 0 )
: QMainWindow( parent, name )
};
int main( int argc, char * argv[] )
{
QApplication a( argc, argv );
Test t;
t.resize( 700, 800 );
t.show();
return a.exec();
}