diff options
author | Ivan Timofeev <timofeev.i.s@gmail.com> | 2013-01-10 09:18:59 +0400 |
---|---|---|
committer | Ivan Timofeev <timofeev.i.s@gmail.com> | 2013-01-10 09:19:46 +0400 |
commit | 24edbb1900e95d3fee6c27006191e9ab67f60c21 (patch) | |
tree | 55666951f59ab80fb343662c72a79ff240833b28 /sd | |
parent | d158a09e56e3944458d63a6c572f60dbe4632dad (diff) |
valueOf sal_uInt16 -> valueOf sal_Int32
Change-Id: Ibd92f5ebe3079dd0b75a0f429efc68842a4305ec
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/dlg/custsdlg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/dlg/custsdlg.cxx b/sd/source/ui/dlg/custsdlg.cxx index bb7841137733..d55a688b0776 100644 --- a/sd/source/ui/dlg/custsdlg.cxx +++ b/sd/source/ui/dlg/custsdlg.cxx @@ -199,7 +199,7 @@ IMPL_LINK( SdCustomShowDlg, ClickButtonHdl, void *, p ) OUString aStrCopy( SdResId( STR_COPY_CUSTOMSHOW ) ); sal_uInt16 nStrPos = aStr.indexOf( aStrCopy ); - sal_uInt16 nNum = 1; + sal_Int32 nNum = 1; if( nStrPos == STRING_NOTFOUND ) { aStr = aStr + " (" + aStrCopy + OUString::valueOf( nNum ) + ")"; |