[vlc-commits] Qt4: add title to file associations dialog
    Edward Wang 
    git at videolan.org
       
    Wed Dec 21 21:36:29 CET 2011
    
    
  
vlc | branch: master | Edward Wang <edward.c.wang at compdigitec.com> | Wed Dec 21 07:21:23 2011 -0500| [8634f7619987c7fb82a5e7b7568019dae29f7b21] | committer: Jean-Baptiste Kempf
Qt4: add title to file associations dialog
Currently, when you click the button to set up file associations on
Windows, the dialog presented is untitled and just displays the file
name, "vlc".
Close #5711
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8634f7619987c7fb82a5e7b7568019dae29f7b21
---
 modules/gui/qt4/components/simple_preferences.cpp |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/modules/gui/qt4/components/simple_preferences.cpp b/modules/gui/qt4/components/simple_preferences.cpp
index a7c790a..b6f6f30 100644
--- a/modules/gui/qt4/components/simple_preferences.cpp
+++ b/modules/gui/qt4/components/simple_preferences.cpp
@@ -945,6 +945,7 @@ void SPrefsPanel::assoDialog()
     CoUninitialize();
 
     QDialog *d = new QDialog( this );
+    d->setWindowTitle( qtr( "File associations" ) );
     QGridLayout *assoLayout = new QGridLayout( d );
 
     QTreeWidget *filetypeList = new QTreeWidget;
    
    
More information about the vlc-commits
mailing list