diff options
author | David Tardon <dtardon@redhat.com> | 2011-01-31 08:34:11 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2011-01-31 08:34:11 +0100 |
commit | d326d10ba876b064cb092a3cf4909fc3c915242a (patch) | |
tree | da2aa586c8acb116773956aadadd52163cc48658 /toolkit/source | |
parent | 4938a98225299909f528ad7f3a8942f71dd46747 (diff) |
use the right variable
Not that it matters much, as nWheelBehavior has the same value...
Diffstat (limited to 'toolkit/source')
-rw-r--r-- | toolkit/source/awt/vclxwindow.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/source/awt/vclxwindow.cxx b/toolkit/source/awt/vclxwindow.cxx index dbe0296c56ce..808acf892730 100644 --- a/toolkit/source/awt/vclxwindow.cxx +++ b/toolkit/source/awt/vclxwindow.cxx @@ -1518,7 +1518,7 @@ void VCLXWindow::setProperty( const ::rtl::OUString& PropertyName, const ::com:: OSL_ENSURE( false, "VCLXWindow::setProperty( 'MouseWheelBehavior' ): illegal property value!" ); } - aMouseSettings.SetWheelBehavior( nWheelBehavior ); + aMouseSettings.SetWheelBehavior( nVclBehavior ); aSettings.SetMouseSettings( aMouseSettings ); pWindow->SetSettings( aSettings, TRUE ); } |