diff options
author | Noel Grandin <noel@peralex.com> | 2013-08-01 11:23:58 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-08-12 11:56:36 +0200 |
commit | d7fe5ab30ca9df722eec33d428baedd258075eac (patch) | |
tree | 04a5100cf61023ae7b5ba16a5fb08cbea917e9ec /include/vcl/outdev.hxx | |
parent | a45492fa9bfe5ba76910b178fda64205ae5f6705 (diff) |
convert vcl/menu.hxx from XubString to OUString (second attempt)
Change-Id: I579525326be702ffbb57d49970da5804fd2fe12d
Diffstat (limited to 'include/vcl/outdev.hxx')
-rw-r--r-- | include/vcl/outdev.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx index 2e5ad686a7d8..696a928571a4 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -629,9 +629,9 @@ public: long GetCtrlTextWidth( const OUString& rStr, xub_StrLen nIndex = 0, xub_StrLen nLen = STRING_LEN, sal_uInt16 nStyle = TEXT_DRAW_MNEMONIC ) const; - static OUString GetNonMnemonicString( const OUString& rStr, xub_StrLen& rMnemonicPos ); + static OUString GetNonMnemonicString( const OUString& rStr, sal_Int32& rMnemonicPos ); static OUString GetNonMnemonicString( const OUString& rStr ) - { xub_StrLen nDummy; return GetNonMnemonicString( rStr, nDummy ); } + { sal_Int32 nDummy; return GetNonMnemonicString( rStr, nDummy ); } sal_Bool GetTextBoundRect( Rectangle& rRect, const OUString& rStr, xub_StrLen nBase = 0, xub_StrLen nIndex = 0, xub_StrLen nLen = STRING_LEN, |