]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/dialogs/vlm.cpp
Qt: move Sout Dialog out of singleton.
[vlc] / modules / gui / qt4 / dialogs / vlm.cpp
index 866c5a0c553c5810b6452df31147cd968ffff6c2..12702799faf67d9e87e436ee27dee829122820cb 100644 (file)
@@ -399,7 +399,7 @@ void VLMDialog::selectInput()
 
 void VLMDialog::selectOutput()
 {
-    SoutDialog *s = SoutDialog::getInstance( this, p_intf );
+    SoutDialog *s = new SoutDialog( this, p_intf );
     if( s->exec() == QDialog::Accepted )
         ui.outputLedit->setText( s->getMrl() );
 }