]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/dialogs_provider.cpp
Spelling fixes
[vlc] / modules / gui / qt4 / dialogs_provider.cpp
index 868f2082d1acf0bdcffe3feb94159498e0e51952..d296beffb2053f83be72e779f498843a50a32eb9 100644 (file)
@@ -335,8 +335,6 @@ void DialogsProvider::MLAppendDialog()
 
 /**
  * Simple open
- * Not used anymore. Let the code until we are sure we don't want it
- * Two opens make it confusing for the user.
  ***/
 QStringList DialogsProvider::showSimpleOpen( QString help,
                                              int filters,
@@ -582,12 +580,14 @@ void DialogsProvider::doInteraction( intf_dialog_args_t *p_arg )
         }
         break;
     case INTERACT_HIDE:
+        msg_Dbg( p_intf, "Hide the Interaction Dialog" );
         qdialog = (InteractionDialog*)(p_dialog->p_private);
         if( qdialog )
             qdialog->hide();
         p_dialog->i_status = HIDDEN_DIALOG;
         break;
     case INTERACT_DESTROY:
+        msg_Dbg( p_intf, "Destroy the Interaction Dialog" );
         qdialog = (InteractionDialog*)(p_dialog->p_private);
         if( !p_dialog->i_flags & DIALOG_NONBLOCKING_ERROR )
             delete qdialog;