diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2018-04-06 10:48:58 +0900 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-04-06 06:34:31 +0200 |
commit | 8d6e498a11024ca3cf70864250a757e0d5a7b166 (patch) | |
tree | 591f01999de4864fb1c375e5352d69fdf86ee587 | |
parent | 4e13bfaf6840d90b7ee0f3b4a8c3a3e8d5d5f3b5 (diff) |
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 <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r-- | ucb/source/ucp/file/filrset.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
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<sal_Int32>::get(); seq[0].Attributes = beans::PropertyAttribute::READONLY; - seq[0].Name = "IsRowCountFinal"; - seq[0].Handle = -1; - seq[0].Type = cppu::UnoType<sal_Bool>::get(); - seq[0].Attributes = beans::PropertyAttribute::READONLY; + seq[1].Name = "IsRowCountFinal"; + seq[1].Handle = -1; + seq[1].Type = cppu::UnoType<sal_Bool>::get(); + seq[1].Attributes = beans::PropertyAttribute::READONLY; XPropertySetInfo_impl* p = new XPropertySetInfo_impl( m_pMyShell, seq ); |