diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-28 11:26:28 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-28 13:44:15 +0200 |
commit | 9f387fa51c138e9a01d097990e17294840aaa473 (patch) | |
tree | 2ebb5a808259c55b52f23c613c86013a0ae5922b /svx/source | |
parent | 4a8f12391dd46f48fe8df12b889ac5c221b18402 (diff) |
css.awt.ItemEvent.Highlighted is of type long
Change-Id: Iff42783f04a9a037a6183784478ea66b04aa7d32
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/fmcomp/gridcell.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/fmcomp/gridcell.cxx b/svx/source/fmcomp/gridcell.cxx index ca3e34fc4ae0..5a0b5b62bdf0 100644 --- a/svx/source/fmcomp/gridcell.cxx +++ b/svx/source/fmcomp/gridcell.cxx @@ -3986,7 +3986,7 @@ void FmXCheckBoxCell::onWindowEvent( const sal_uIntPtr _nEventId, const vcl::Win { awt::ItemEvent aEvent; aEvent.Source = *this; - aEvent.Highlighted = sal_False; + aEvent.Highlighted = 0; aEvent.Selected = m_pBox->GetState(); m_aItemListeners.notifyEach( &awt::XItemListener::itemStateChanged, aEvent ); } @@ -4312,7 +4312,7 @@ void FmXListBoxCell::onWindowEvent( const sal_uIntPtr _nEventId, const vcl::Wind ::com::sun::star::awt::ItemEvent aEvent; aEvent.Source = *this; - aEvent.Highlighted = sal_False; + aEvent.Highlighted = 0; // Bei Mehrfachselektion 0xFFFF, sonst die ID aEvent.Selected = (m_pBox->GetSelectEntryCount() == 1 ) @@ -4514,7 +4514,7 @@ void FmXComboBoxCell::onWindowEvent( const sal_uIntPtr _nEventId, const vcl::Win { awt::ItemEvent aEvent; aEvent.Source = *this; - aEvent.Highlighted = sal_False; + aEvent.Highlighted = 0; // Bei Mehrfachselektion 0xFFFF, sonst die ID aEvent.Selected = ( m_pComboBox->GetSelectEntryCount() == 1 ) |