Home
last modified time | relevance | path

Searched refs:vClipboardList (Results 1 – 5 of 5) sorted by relevance

/dports/editors/libreoffice6/libreoffice-6.4.7.2/reportdesign/source/ui/dlg/
H A DGroupsSorting.cxx225 ::std::vector<uno::Any> vClipboardList; in fillSelectedGroups()
226 vClipboardList.reserve(GetSelectRowCount()); in fillSelectedGroups()
241 vClipboardList.push_back( uno::makeAny(xOrgGroup) ); in fillSelectedGroups()
249 if ( !vClipboardList.empty() ) in fillSelectedGroups()
250 aList = uno::Sequence< uno::Any >(vClipboardList.data(), vClipboardList.size()); in fillSelectedGroups()
/dports/editors/libreoffice/libreoffice-7.2.6.2/reportdesign/source/ui/dlg/
H A DGroupsSorting.cxx221 ::std::vector<uno::Any> vClipboardList; in fillSelectedGroups()
222 vClipboardList.reserve(GetSelectRowCount()); in fillSelectedGroups()
237 vClipboardList.push_back( uno::makeAny(xOrgGroup) ); in fillSelectedGroups()
245 if ( !vClipboardList.empty() ) in fillSelectedGroups()
246 aList = uno::Sequence< uno::Any >(vClipboardList.data(), vClipboardList.size()); in fillSelectedGroups()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/dbaccess/source/ui/tabledesign/
H A DTEditControl.cxx718 std::vector< std::shared_ptr<OTableRow> > vClipboardList; in CopyRows() local
719 vClipboardList.reserve(GetSelectRowCount()); in CopyRows()
728 vClipboardList.push_back( pClipboardRow); in CopyRows()
731 if(!vClipboardList.empty()) in CopyRows()
733 rtl::Reference<OTableRowExchange> pData = new OTableRowExchange(vClipboardList); in CopyRows()
/dports/editors/libreoffice/libreoffice-7.2.6.2/dbaccess/source/ui/tabledesign/
H A DTEditControl.cxx721 std::vector< std::shared_ptr<OTableRow> > vClipboardList; in CopyRows() local
722 vClipboardList.reserve(GetSelectRowCount()); in CopyRows()
731 vClipboardList.push_back( pClipboardRow); in CopyRows()
734 if(!vClipboardList.empty()) in CopyRows()
736 rtl::Reference<OTableRowExchange> pData = new OTableRowExchange(vClipboardList); in CopyRows()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/dbaccess/source/ui/browser/
H A Dsbagrid.cxx663 std::vector< std::shared_ptr<OTableRow> > vClipboardList; in PostExecuteColumnContextMenu() local
665 vClipboardList.push_back(std::make_shared<OTableRow>(xField)); in PostExecuteColumnContextMenu()
666 rtl::Reference<OTableRowExchange> pData = new OTableRowExchange(vClipboardList); in PostExecuteColumnContextMenu()