summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Guthrie <cguthrie@mandriva.org>2010-04-20 19:46:30 +0100
committerColin Guthrie <cguthrie@mandriva.org>2010-04-20 19:46:30 +0100
commitb11f0b72976ad3c757539291a22edf4750dac095 (patch)
treef46e492b91b1b492287c3c57afb422cd50c56d50
parentcbcdd0f49c0cdf570d2a4c90f8daf5f229e54bec (diff)
streamwidget: Fix a compile warning.
-rw-r--r--src/streamwidget.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/streamwidget.cc b/src/streamwidget.cc
index 12c7d6d..c4ad15f 100644
--- a/src/streamwidget.cc
+++ b/src/streamwidget.cc
@@ -31,8 +31,8 @@
/*** StreamWidget ***/
StreamWidget::StreamWidget(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& x) :
MinimalStreamWidget(cobject, x),
- mpMainWindow(NULL),
- peak(NULL) {
+ peak(NULL),
+ mpMainWindow(NULL) {
x->get_widget("lockToggleButton", lockToggleButton);
x->get_widget("muteToggleButton", muteToggleButton);