[vlc-devel] commit: (qt4) fix displaying of tvtelx-transparent (Jean-Paul Saman )
git version control
git at videolan.org
Sat Oct 4 14:39:42 CEST 2008
vlc | branch: 0.9-bugfix | Jean-Paul Saman <jpsaman at videolan.org> | Fri Oct 3 15:22:07 2008 +0200| [3cbf6d2818c913a7798f4660ee1f588f72299511] | committer: Jean-Paul Saman
(qt4) fix displaying of tvtelx-transparent
The source code in components/interface_widgets.cpp referred to the tvtelx-transparent image as telexTransparent->setIcon( QIcon( ":/tvtelx-transparent" ) ), while the vlc.qrc resource file referred to it as "tvtelx-trans".
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3cbf6d2818c913a7798f4660ee1f588f72299511
---
modules/gui/qt4/components/interface_widgets.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/gui/qt4/components/interface_widgets.cpp b/modules/gui/qt4/components/interface_widgets.cpp
index 8fd790c..6fca0ca 100644
--- a/modules/gui/qt4/components/interface_widgets.cpp
+++ b/modules/gui/qt4/components/interface_widgets.cpp
@@ -829,7 +829,7 @@ void ControlsWidget::toggleTeletextTransparency()
}
else
{
- telexTransparent->setIcon( QIcon( ":/tvtelx-transparent" ) );
+ telexTransparent->setIcon( QIcon( ":/tvtelx-trans" ) );
telexTransparent->setToolTip( qtr( "Transparent" ) );
b_telexTransparent = true;
}
More information about the vlc-devel
mailing list