Commit 3834b98e authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: fix a leaking QSignalmapper in PL

parent fe2d4b8d
...@@ -455,7 +455,7 @@ void StandardPLPanel::browseInto( input_item_t *p_input ) ...@@ -455,7 +455,7 @@ void StandardPLPanel::browseInto( input_item_t *p_input )
LocationBar::LocationBar( PLModel *m ) LocationBar::LocationBar( PLModel *m )
{ {
model = m; model = m;
mapper = new QSignalMapper; mapper = new QSignalMapper( this );
CONNECT( mapper, mapped( int ), this, invoke( int ) ); CONNECT( mapper, mapped( int ), this, invoke( int ) );
} }
......
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