Bug #1676
closedcrash on empty windowtitle
0%
Description
test case:
namespace
{
class Dia
: public Wt::WDialog
{
public:
Dia()
: Wt::WDialog()
{
setWindowTitle( windowTitle() + "xxx" );
}
};
class TestWindowTitle
: public Wt::WApplication
{
public:
TestWindowTitle( const Wt::WEnvironment& env )
: Wt::WApplication( env )
{
auto button = new Wt::WPushButton( "click" );
root()->addWidget( button );
button->clicked().connect( [&]( const Wt::WMouseEvent& e )
{
( new Dia() )->exec();
});
}
};
}
best regards,
max
Updated by Koen Deforche almost 12 years ago
- Status changed from New to Resolved
- Assignee set to Koen Deforche
- Target version set to 3.3.0
Hey Max,
Thanks for catching this. Will be fixed in the next release candidate.
Regards,
koen
Updated by Koen Deforche almost 12 years ago
- Status changed from Resolved to Closed