diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-04-04 19:18:07 +0000 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-04-06 14:20:28 +0200 |
commit | 874f90e918848cee1560b132b8a675df81e908dd (patch) | |
tree | d8ec80d622fa72c42d74fd3899aa96667237f1e4 | |
parent | 81662e76cff9a30c2cbaa2a7414ebccf1751b55e (diff) |
Fix typo
Change-Id: I7fa59ba667a35b4f2fbfa284cf5257218428259a
Reviewed-on: https://gerrit.libreoffice.org/70331
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r-- | desktop/source/deployment/gui/dp_gui_extlistbox.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/deployment/gui/dp_gui_extlistbox.cxx b/desktop/source/deployment/gui/dp_gui_extlistbox.cxx index eb34d3730ada..c37ec6945d93 100644 --- a/desktop/source/deployment/gui/dp_gui_extlistbox.cxx +++ b/desktop/source/deployment/gui/dp_gui_extlistbox.cxx @@ -781,7 +781,7 @@ void ExtensionBox_Impl::MouseButtonDown( const MouseEvent& rMEvt ) if ( rMEvt.IsLeft() ) { if ( rMEvt.IsMod1() && m_bHasActive ) - selectEntry( m_vEntries.size() ); // Selecting an not existing entry will deselect the current one + selectEntry( m_vEntries.size() ); // Selecting a not existing entry will deselect the current one else selectEntry( nPos ); } @@ -990,7 +990,7 @@ void ExtensionBox_Impl::updateEntry( const uno::Reference< deployment::XPackage //This function is also called as a result of removing an extension. //see PackageManagerImpl::removePackage //The gui is a registered as listener on the package. Removing it will cause the -//listeners to be notified an then this function is called. At this moment xPackage +//listeners to be notified and then this function is called. At this moment xPackage //is in the disposing state and all calls on it may result in a DisposedException. void ExtensionBox_Impl::removeEntry( const uno::Reference< deployment::XPackage > &xPackage ) { |