diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-30 20:49:46 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-30 21:21:29 +0100 |
commit | f21d478b8599668553dc1b2dcb08ae53d783a1a8 (patch) | |
tree | 7f86d0866d02cf97b37f3211505d07983b4dcb8a /sw/inc/swabstdlg.hxx | |
parent | 5129ed7014b7e065f82e2781caac4a459ca9766d (diff) |
coverity#1194913 Overflowed return value
Change-Id: I4fc25ec677167a064c349d250352576490fcedcd
Diffstat (limited to 'sw/inc/swabstdlg.hxx')
-rw-r--r-- | sw/inc/swabstdlg.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/swabstdlg.hxx b/sw/inc/swabstdlg.hxx index d5736be0859c..c6695612ffb0 100644 --- a/sw/inc/swabstdlg.hxx +++ b/sw/inc/swabstdlg.hxx @@ -255,8 +255,8 @@ class AbstractSwSelGlossaryDlg : public VclAbstractDialog { public: virtual void InsertGlos(const OUString &rRegion, const OUString &rGlosName) = 0; // inline - virtual sal_uInt16 GetSelectedIdx() const = 0; // inline - virtual void SelectEntryPos(sal_uInt16 nIdx) = 0; // inline + virtual sal_Int32 GetSelectedIdx() const = 0; // inline + virtual void SelectEntryPos(sal_Int32 nIdx) = 0; // inline }; class AbstractSwAutoFormatDlg : public VclAbstractDialog |