diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2015-12-05 12:41:03 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2015-12-05 13:02:42 +0000 |
commit | 5738a6fb4aa62f20416f164c2f4b9c170f1ebfb4 (patch) | |
tree | 117b9cff9297f1a61ac62a9af063cd3139b3cb4b /dbaccess | |
parent | f2e525eb2707a98a0d0a1bdeaf054c3981ce5f6b (diff) |
Fix Treelist shouldn't use VCLEVENT_LISTBOX_SELECT
warn:legacy.osl:21997:1:accessibility/source/extended/accessiblelistbox.cxx:103: Debug: Treelist shouldn't use VCLEVENT_LISTBOX_SELECT
To reproduce:
- Launch Base and create a brand new HsqlDb file or open an existing one
- Select Tables pane
- Click Table Design
=> the message appears in console
Change-Id: If7fa99890bbec8795a62b83dbe193247adffb733
Reviewed-on: https://gerrit.libreoffice.org/20411
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/app/AppDetailView.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/app/AppDetailView.cxx b/dbaccess/source/ui/app/AppDetailView.cxx index 0f537e8eb131..99470b0af965 100644 --- a/dbaccess/source/ui/app/AppDetailView.cxx +++ b/dbaccess/source/ui/app/AppDetailView.cxx @@ -287,7 +287,7 @@ bool OCreationList::setCurrentEntryInvalidate( SvTreeListEntry* _pEntry ) if ( GetCurEntry() ) { InvalidateEntry( GetCurEntry() ); - CallEventListeners( VCLEVENT_LISTBOX_SELECT, GetCurEntry() ); + CallEventListeners( VCLEVENT_LISTBOX_TREESELECT, GetCurEntry() ); } updateHelpText(); return true; |