From 8d6e498a11024ca3cf70864250a757e0d5a7b166 Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Fri, 6 Apr 2018 10:48:58 +0900 Subject: ucb: Shift property "IsRowCountFinal"'s index from 0 to 1 The original 0 seems a typo. Cf. ucb/source/sorter/sortresult.cxx and ucb/source/ucp/ftp/ftpresultsetbase.cxx. Change-Id: I5c2331483aa8186a031bba9fb2fc906ee4a1e535 Reviewed-on: https://gerrit.libreoffice.org/52484 Tested-by: Jenkins Reviewed-by: Noel Grandin --- ucb/source/ucp/file/filrset.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ucb') diff --git a/ucb/source/ucp/file/filrset.cxx b/ucb/source/ucp/file/filrset.cxx index 1d949a9996dd..21e9acdc72c0 100644 --- a/ucb/source/ucp/file/filrset.cxx +++ b/ucb/source/ucp/file/filrset.cxx @@ -631,10 +631,10 @@ XResultSet_impl::getPropertySetInfo() seq[0].Type = cppu::UnoType::get(); seq[0].Attributes = beans::PropertyAttribute::READONLY; - seq[0].Name = "IsRowCountFinal"; - seq[0].Handle = -1; - seq[0].Type = cppu::UnoType::get(); - seq[0].Attributes = beans::PropertyAttribute::READONLY; + seq[1].Name = "IsRowCountFinal"; + seq[1].Handle = -1; + seq[1].Type = cppu::UnoType::get(); + seq[1].Attributes = beans::PropertyAttribute::READONLY; XPropertySetInfo_impl* p = new XPropertySetInfo_impl( m_pMyShell, seq ); -- cgit