[vlc-commits] commit: qt4: More static_casts to null in preference components ( Juho Vähä-Herttua )
git at videolan.org
git at videolan.org
Sun Jul 25 02:52:52 CEST 2010
vlc | branch: master | Juho Vähä-Herttua <juhovh at iki.fi> | Sat Jul 24 23:31:10 2010 +0300| [3bda99a3be785097bcb8f47630e47b1bf7ab5e96] | committer: Jean-Baptiste Kempf
qt4: More static_casts to null in preference components
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3bda99a3be785097bcb8f47630e47b1bf7ab5e96
---
.../gui/qt4/components/complete_preferences.cpp | 2 +-
modules/gui/qt4/components/simple_preferences.cpp | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/gui/qt4/components/complete_preferences.cpp b/modules/gui/qt4/components/complete_preferences.cpp
index 9a9202a..2a5f611 100644
--- a/modules/gui/qt4/components/complete_preferences.cpp
+++ b/modules/gui/qt4/components/complete_preferences.cpp
@@ -404,7 +404,7 @@ AdvPrefsPanel::AdvPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
}
QLabel *titleLabel = new QLabel( head );
- QFont titleFont = QApplication::font( static_cast<QWidget*>(0) );
+ QFont titleFont = QApplication::font();
titleFont.setPointSize( titleFont.pointSize() + 6 );
titleLabel->setFont( titleFont );
diff --git a/modules/gui/qt4/components/simple_preferences.cpp b/modules/gui/qt4/components/simple_preferences.cpp
index 6aaa64f..e92b603 100644
--- a/modules/gui/qt4/components/simple_preferences.cpp
+++ b/modules/gui/qt4/components/simple_preferences.cpp
@@ -191,7 +191,7 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
// Title Label
QLabel *panel_label = new QLabel;
- QFont labelFont = QApplication::font( static_cast<QWidget*>(0) );
+ QFont labelFont = QApplication::font();
labelFont.setPointSize( labelFont.pointSize() + 6 );
panel_label->setFont( labelFont );
@@ -200,7 +200,7 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
title_line->setFrameShape(QFrame::HLine);
title_line->setFrameShadow(QFrame::Sunken);
- QFont italicFont = QApplication::font( static_cast<QWidget*>(0) );
+ QFont italicFont = QApplication::font();
italicFont.setItalic( true );
switch( number )
More information about the vlc-commits
mailing list