diff options
author | Joseph Powers <jpowers27@cox.net> | 2011-07-17 06:44:39 -0700 |
---|---|---|
committer | Joseph Powers <jpowers27@cox.net> | 2011-07-17 06:45:10 -0700 |
commit | 602cbe4d175a264186504786cfbfb3ed3cf77be9 (patch) | |
tree | 5b7ae5c41bbcb597b65f566c12ae188b7539e0f3 | |
parent | 380971f0789084417470edc5ff1a2ced3e1a53f0 (diff) |
Fix type missmatch in SvxIconChoiceCtrl_Impl.
Sorry about that. My compiler (gcc 4.0) doesn't notice on a 32bit build.
Thanks go to Maciej Rumianowski for pointing this out.
-rw-r--r-- | svtools/source/contnr/imivctl.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/contnr/imivctl.hxx b/svtools/source/contnr/imivctl.hxx index ced1856eeceb..5dc71796a392 100644 --- a/svtools/source/contnr/imivctl.hxx +++ b/svtools/source/contnr/imivctl.hxx @@ -351,7 +351,7 @@ public: void Clear( sal_Bool bInCtor = sal_False ); void SetStyle( WinBits nWinStyle ); WinBits GetStyle() const { return nWinBits; } - void InsertEntry( SvxIconChoiceCtrlEntry*, sal_uLong nPos, const Point* pPos=0 ); + void InsertEntry( SvxIconChoiceCtrlEntry*, size_t nPos, const Point* pPos=0 ); void CreateAutoMnemonics( MnemonicGenerator* _pGenerator = NULL ); void RemoveEntry( SvxIconChoiceCtrlEntry* pEntry ); void FontModified(); |