[vlc-devel] commit: Init order ( Rémi Denis-Courmont )
git version control
git at videolan.org
Thu Aug 13 22:37:01 CEST 2009
vlc | branch: 1.0-bugfix | Rémi Denis-Courmont <remi at remlab.net> | Thu Aug 13 23:29:58 2009 +0300| [bdb990b8bc43c3619fc6efd722514ea7526645c0] | committer: Rémi Denis-Courmont
Init order
(cherry picked from commit 4d218ceb5fc9664d95665874559a45fe9cc0250e)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=bdb990b8bc43c3619fc6efd722514ea7526645c0
---
modules/gui/qt4/components/controller_widget.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/qt4/components/controller_widget.cpp b/modules/gui/qt4/components/controller_widget.cpp
index 449e197..dc2983d 100644
--- a/modules/gui/qt4/components/controller_widget.cpp
+++ b/modules/gui/qt4/components/controller_widget.cpp
@@ -42,8 +42,8 @@
SoundWidget::SoundWidget( QWidget *_parent, intf_thread_t * _p_intf,
bool b_shiny, bool b_special )
- : QWidget( _parent ), b_my_volume( false ),
- p_intf( _p_intf)
+ : QWidget( _parent ), p_intf( _p_intf),
+ b_my_volume( false )
{
/* We need a layout for this widget */
QHBoxLayout *layout = new QHBoxLayout( this );
More information about the vlc-devel
mailing list