[vlc-commits] Qt: Preferences: match window title to current prefs
Francois Cartegnie
git at videolan.org
Fri Apr 5 21:26:55 CEST 2013
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Fri Apr 5 21:18:58 2013 +0200| [adb234fc3569fbbf40ec31771bf083654dad1139] | committer: Francois Cartegnie
Qt: Preferences: match window title to current prefs
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=adb234fc3569fbbf40ec31771bf083654dad1139
---
modules/gui/qt4/dialogs/preferences.cpp | 2 ++
1 file changed, 2 insertions(+)
diff --git a/modules/gui/qt4/dialogs/preferences.cpp b/modules/gui/qt4/dialogs/preferences.cpp
index 9875458..d18509d 100644
--- a/modules/gui/qt4/dialogs/preferences.cpp
+++ b/modules/gui/qt4/dialogs/preferences.cpp
@@ -194,6 +194,7 @@ void PrefsDialog::setAdvanced()
all->setChecked( true );
stack->setCurrentIndex( ADVANCED );
+ setWindowTitle( qtr( "Advanced Preferences" ) );
}
void PrefsDialog::setSmall()
@@ -214,6 +215,7 @@ void PrefsDialog::setSmall()
small->setChecked( true );
stack->setCurrentIndex( SIMPLE );
+ setWindowTitle( qtr( "Simple Preferences" ) );
}
/* Switching from on simple panel to another */
More information about the vlc-commits
mailing list