[Libreoffice-commits] .: svtools/source
Joseph Powers
jpowers at kemper.freedesktop.org
Sun Jul 17 06:45:18 PDT 2011
svtools/source/contnr/imivctl.hxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 05cc9a5ace3d4e88eab43503873b217e6def284a
Author: Joseph Powers <jpowers27 at cox.net>
Date: Sun Jul 17 06:44:39 2011 -0700
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.
diff --git a/svtools/source/contnr/imivctl.hxx b/svtools/source/contnr/imivctl.hxx
index ced1856..5dc7179 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();
More information about the Libreoffice-commits
mailing list