summaryrefslogtreecommitdiffstats
path: root/sc/inc/scabstdlg.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-30 20:57:35 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-03-30 21:21:30 +0100
commit85ed65f83981ac07215cb01024e8e66d705f1267 (patch)
tree3123162eb8cdbe0bfbf6ac962cb2666f6e4ccc4f /sc/inc/scabstdlg.hxx
parentcoverity#1194919 Overflowed return value (diff)
downloadcore-85ed65f83981ac07215cb01024e8e66d705f1267.tar.gz
core-85ed65f83981ac07215cb01024e8e66d705f1267.zip
coverity#1194921 Overflowed return value
Change-Id: I872835c3a20eda807d571fa27794dbe2bf858e7a
Diffstat (limited to 'sc/inc/scabstdlg.hxx')
-rw-r--r--sc/inc/scabstdlg.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/inc/scabstdlg.hxx b/sc/inc/scabstdlg.hxx
index e28fdbf9147e..04e0a4ebf595 100644
--- a/sc/inc/scabstdlg.hxx
+++ b/sc/inc/scabstdlg.hxx
@@ -286,10 +286,10 @@ class AbstractScShowTabDlg : public VclAbstractDialog
{
public:
virtual void Insert( const OUString& rString, bool bSelected ) = 0;
- virtual sal_uInt16 GetSelectEntryCount() const = 0;
+ virtual sal_Int32 GetSelectEntryCount() const = 0;
virtual void SetDescription(const OUString& rTitle, const OUString& rFixedText, const OString& nDlgHelpId, const OString& nLbHelpId ) = 0;
- virtual OUString GetSelectEntry(sal_uInt16 nPos) const = 0;
- virtual sal_uInt16 GetSelectEntryPos(sal_uInt16 nPos) const = 0;
+ virtual OUString GetSelectEntry(sal_Int32 nPos) const = 0;
+ virtual sal_Int32 GetSelectEntryPos(sal_Int32 nPos) const = 0;
};
class AbstractScSortWarningDlg : public VclAbstractDialog