Commit d99ea5de authored by Christophe Mutricy's avatar Christophe Mutricy

Don't translate empty strings

parent 1f0a616d
......@@ -80,7 +80,7 @@ void PLItem::init( int _i_id, int _i_input_id, PLItem *parent, PLModel *m)
} else {
i_showflags = parentItem->i_showflags;
//Add empty string and update() handles data appending
strings.append( qtr("") );
strings.append( "" );
}
}
......@@ -90,7 +90,7 @@ void PLItem::updateview( void )
if( model->i_depth == 1 ) //left window for playlist etc.
{
strings.append( qtr("") );
strings.append( "" );
return;
}
......
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