summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-11-13 10:55:27 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-11-13 13:50:38 +0000
commit65a831a8b4dc6795c9c3cce4c74ec352d416d176 (patch)
treea6366f9261bf367062dc942770cfde5468650b80 /fpicker
parenta556802b52c6d0089cb289de4d41c1cc8409bcac (diff)
xub_StrLen->sal_Int32
Change-Id: If287d83f636c2aa585559299be7039cad6208ae2
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/office/iodlg.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/fpicker/source/office/iodlg.hxx b/fpicker/source/office/iodlg.hxx
index 80b5995eb4b1..0126e17195ff 100644
--- a/fpicker/source/office/iodlg.hxx
+++ b/fpicker/source/office/iodlg.hxx
@@ -268,7 +268,7 @@ public:
inline void SetHasFilename( bool bHasFilename );
inline const OUString& GetPath() const;
inline void SetDefaultExt( const OUString& rExt );
- inline void EraseDefaultExt( xub_StrLen _nIndex = 0 );
+ inline void EraseDefaultExt( sal_Int32 _nIndex = 0 );
inline const OUString& GetDefaultExt() const;
inline void SetOKHdl( const Link& rLink );
inline const Link& GetOKHdl() const;
@@ -374,7 +374,7 @@ inline void SvtFileDialog::SetDefaultExt( const OUString& rExt )
_aDefExt = rExt;
}
-inline void SvtFileDialog::EraseDefaultExt( xub_StrLen _nIndex )
+inline void SvtFileDialog::EraseDefaultExt( sal_Int32 _nIndex )
{
_aDefExt = _aDefExt.copy( 0, _nIndex );
}