From 9385f418d862237a5f3f2f71e2bf5c643322f472 Mon Sep 17 00:00:00 2001 From: Paul Giblock Date: Sun, 20 Apr 2008 14:02:40 +0000 Subject: [PATCH] Fix stereo matrix's save git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@927 0778d3d1-df1d-0410-868b-ea421aaaa00d --- plugins/stereo_matrix/stereomatrix_controls.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/stereo_matrix/stereomatrix_controls.cpp b/plugins/stereo_matrix/stereomatrix_controls.cpp index c2c4f8a70..c6031e7fd 100644 --- a/plugins/stereo_matrix/stereomatrix_controls.cpp +++ b/plugins/stereo_matrix/stereomatrix_controls.cpp @@ -71,9 +71,9 @@ void FASTCALL stereoMatrixControls::saveSettings( QDomDocument & _doc, QDomElement & _this ) { _this.setAttribute( "l-l", m_llModel.value() ); - _this.setAttribute( "l-r", m_llModel.value() ); - _this.setAttribute( "r-l", m_llModel.value() ); - _this.setAttribute( "r-r", m_llModel.value() ); + _this.setAttribute( "l-r", m_lrModel.value() ); + _this.setAttribute( "r-l", m_rlModel.value() ); + _this.setAttribute( "r-r", m_rrModel.value() ); }