summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authortymyjan <tymyjan@yahoo.co.uk>2016-07-09 18:17:27 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-07-11 07:31:16 +0000
commite9bded5b87b491c0a0d7a62512e9c0923a08ce28 (patch)
tree506c36fd6ddf6fba9debab953b3a3ddad7274f9f /include
parent07fb94655f4745eb4e80bf6e8d4cdd95371f23bb (diff)
tdf#75280 Cleaning up of sal_uIntPtr usage #3
Change-Id: I465d126652f4dd21c19ee6730466719445d835b3 Reviewed-on: https://gerrit.libreoffice.org/27074 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/svx/gallery.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/svx/gallery.hxx b/include/svx/gallery.hxx
index 51cc52c714bf..f0ca115d5b61 100644
--- a/include/svx/gallery.hxx
+++ b/include/svx/gallery.hxx
@@ -59,28 +59,28 @@ public:
static bool FillObjListTitle( const sal_uInt32 nThemeId, std::vector< OUString >& rList );
static bool InsertURL( const OUString& rThemeName, const OUString& rURL );
- static bool InsertURL( sal_uIntPtr nThemeId, const OUString& rURL );
+ static bool InsertURL( sal_uInt32 nThemeId, const OUString& rURL );
- static bool GetGraphicObj( const OUString& rThemeName, sal_uIntPtr nPos,
+ static bool GetGraphicObj( const OUString& rThemeName, sal_uInt32 nPos,
Graphic* pGraphic = nullptr, BitmapEx* pThumb = nullptr,
bool bProgess = false );
- static bool GetGraphicObj( sal_uIntPtr nThemeId, sal_uIntPtr nPos,
+ static bool GetGraphicObj( sal_uInt32 nThemeId, sal_uInt32 nPos,
Graphic* pGraphic = nullptr, BitmapEx* pThumb = nullptr,
bool bProgess = false );
- static sal_uIntPtr GetSdrObjCount( const OUString& rThemeName );
- static sal_uIntPtr GetSdrObjCount( sal_uIntPtr nThemeId );
+ static sal_uInt32 GetSdrObjCount( const OUString& rThemeName );
+ static sal_uInt32 GetSdrObjCount( sal_uInt32 nThemeId );
- static bool GetSdrObj( const OUString& rThemeName, sal_uIntPtr nSdrModelPos,
+ static bool GetSdrObj( const OUString& rThemeName, sal_uInt32 nSdrModelPos,
SdrModel* pModel = nullptr, BitmapEx* pThumb = nullptr );
- static bool GetSdrObj( sal_uIntPtr nThemeId, sal_uIntPtr nSdrModelPos,
+ static bool GetSdrObj( sal_uInt32 nThemeId, sal_uInt32 nSdrModelPos,
SdrModel* pModel = nullptr, BitmapEx* pThumb = nullptr );
static bool BeginLocking( const OUString& rThemeName );
- static bool BeginLocking( sal_uIntPtr nThemeId );
+ static bool BeginLocking( sal_uInt32 nThemeId );
static bool EndLocking( const OUString& rThemeName );
- static bool EndLocking( sal_uIntPtr nThemeId );
+ static bool EndLocking( sal_uInt32 nThemeId );
};
#endif // INCLUDED_SVX_GALLERY_HXX