[Libreoffice-commits] .: Branch 'libreoffice-3-5' - sc/source
Noel Power
noelp at kemper.freedesktop.org
Tue Mar 6 01:35:38 PST 2012
sc/source/ui/app/inputwin.cxx | 4 ++++
1 file changed, 4 insertions(+)
New commits:
commit 0dfd481888abcb14b601ca039692e9d83c1be19a
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date: Tue Mar 6 01:16:43 2012 +0100
don't crash when scrolling in input line, fdo#46975
Signed-off-by: Noel Power <noel.power at novell.com>
diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx
index 3e53062..b7592e3 100644
--- a/sc/source/ui/app/inputwin.cxx
+++ b/sc/source/ui/app/inputwin.cxx
@@ -1609,6 +1609,10 @@ void ScTextWnd::Command( const CommandEvent& rCEvt )
rBindings.Invalidate( SID_ATTR_CHAR_FONTHEIGHT );
}
}
+ else if ( nCommand == COMMAND_WHEEL )
+ {
+ //don't call InputChanged for COMMAND_WHEEL
+ }
else
SC_MOD()->InputChanged( pEditView );
}
More information about the Libreoffice-commits
mailing list