diff options
author | Ocke Janssen <oj@openoffice.org> | 2002-11-05 07:32:55 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2002-11-05 07:32:55 +0000 |
commit | ab6568ecbbe8166b3187eb9d138a603814b36834 (patch) | |
tree | 111d7470df059bfc5dfb83b7f030d9e2f94ec794 /dbaccess/source/ui | |
parent | 811819177eee3071f657c171f742ebb9b4c29bba (diff) |
#104698# check if type is querycontainer as well
Diffstat (limited to 'dbaccess/source/ui')
-rw-r--r-- | dbaccess/source/ui/browser/unodatbr.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/browser/unodatbr.cxx b/dbaccess/source/ui/browser/unodatbr.cxx index 4d4cdd38a..d04d1a121 100644 --- a/dbaccess/source/ui/browser/unodatbr.cxx +++ b/dbaccess/source/ui/browser/unodatbr.cxx @@ -2,9 +2,9 @@ * * $RCSfile: unodatbr.cxx,v $ * - * $Revision: 1.143 $ + * $Revision: 1.144 $ * - * last change: $Author: oj $ $Date: 2002-10-18 10:10:04 $ + * last change: $Author: oj $ $Date: 2002-11-05 08:32:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -3781,7 +3781,7 @@ sal_Bool SbaTableQueryBrowser::requestContextMenu( const CommandEvent& _rEvent ) case SID_PASTE: { TransferableDataHelper aTransferData(TransferableDataHelper::CreateFromSystemClipboard(getView())); - if ( etQuery == eType ) + if ( etQuery == eType || etQueryContainer == eType) implPasteQuery( pEntry, ODataAccessObjectTransferable::extractObjectDescriptor(aTransferData) ); else implPasteTable( pEntry, aTransferData ); |