Commit d1b06eaf authored by Rafaël Carré's avatar Rafaël Carré

fix memleak

parent c5ef356f
...@@ -437,7 +437,9 @@ void LocationBar::setIndex( const QModelIndex &index ) ...@@ -437,7 +437,9 @@ void LocationBar::setIndex( const QModelIndex &index )
{ {
QToolButton *btn = new QToolButton; QToolButton *btn = new QToolButton;
PLItem *item = model->getItem( i ); PLItem *item = model->getItem( i );
QString text = qfu(input_item_GetTitleFbName( item->inputItem() )); char *fb_name = input_item_GetTitleFbName( item->inputItem() );
QString text = qfu(fb_name);
free(fb_name);
text = QString("/ ") + metrics.elidedText( text, Qt::ElideRight, 150 ); text = QString("/ ") + metrics.elidedText( text, Qt::ElideRight, 150 );
btn->setText( text ); btn->setText( text );
btn->setToolButtonStyle( Qt::ToolButtonTextBesideIcon ); btn->setToolButtonStyle( Qt::ToolButtonTextBesideIcon );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment