[vlc-devel] commit: Init order ( Rémi Denis-Courmont )
git version control
git at videolan.org
Thu Aug 13 22:36:36 CEST 2009
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Thu Aug 13 23:29:58 2009 +0300| [4d218ceb5fc9664d95665874559a45fe9cc0250e] | committer: Rémi Denis-Courmont
Init order
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4d218ceb5fc9664d95665874559a45fe9cc0250e
---
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 839dec6..fbb19be 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