[vlc-commits] Qt4: add title to file associations dialog

Edward Wang git at videolan.org
Wed Dec 21 21:57:44 CET 2011


vlc/vlc-1.2 | branch: master | Edward Wang <edward.c.wang at compdigitec.com> | Wed Dec 21 07:21:23 2011 -0500| [4ac2685cf8c4b9709735d2ccb4d41532c7420655] | 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>
(cherry picked from commit 8634f7619987c7fb82a5e7b7568019dae29f7b21)

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.2.git/?a=commit;h=4ac2685cf8c4b9709735d2ccb4d41532c7420655
---

 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