Kaydet (Commit) 8d6e498a authored tarafından Takeshi Abe's avatar Takeshi Abe Kaydeden (comit) Noel Grandin

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/52484Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst 4e13bfaf
......@@ -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 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment