diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-05-08 10:13:30 +0000 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-05-12 09:03:47 +0200 |
commit | 3822976f6616b4789fee5ab12207fd94e1149e63 (patch) | |
tree | 4eb06285f3f1d55349fe9bca480b4d8e0fa75dcb /dbaccess | |
parent | 0a79b18cacedd597d519150820ebd7c149acde4b (diff) |
Fix typo
Change-Id: I6f6042e57821e4deeeb41ab4ce14ac355ddf432c
Reviewed-on: https://gerrit.libreoffice.org/72175
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/querydesign/TableWindowListBox.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/querydesign/TableWindowListBox.cxx b/dbaccess/source/ui/querydesign/TableWindowListBox.cxx index 54c06c8f0a3b..d7bac39dfd0e 100644 --- a/dbaccess/source/ui/querydesign/TableWindowListBox.cxx +++ b/dbaccess/source/ui/querydesign/TableWindowListBox.cxx @@ -207,7 +207,7 @@ void OTableWindowListBox::StartDrag( sal_Int8 /*nAction*/, const Point& /*rPosPi EndSelection(); // create a description of the source OJoinExchangeData jxdSource(this); - // put it into a exchange object + // put it into an exchange object rtl::Reference<OJoinExchObj> pJoin = new OJoinExchObj(jxdSource,bFirstNotAllowed); pJoin->StartDrag(this, DND_ACTION_LINK, this); } @@ -217,7 +217,7 @@ sal_Int8 OTableWindowListBox::AcceptDrop( const AcceptDropEvent& _rEvt ) { sal_Int8 nDND_Action = DND_ACTION_NONE; // check the format - if ( !OJoinExchObj::isFormatAvailable(GetDataFlavorExVector(),SotClipboardFormatId::SBA_TABID) // this means that the first entry is to be draged + if ( !OJoinExchObj::isFormatAvailable(GetDataFlavorExVector(),SotClipboardFormatId::SBA_TABID) // this means that the first entry is to be dragged && OJoinExchObj::isFormatAvailable(GetDataFlavorExVector()) ) { // don't drop into the window if it's the drag source itself |