summaryrefslogtreecommitdiff
path: root/svx/source/gallery2/galexpl.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-28 11:27:28 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-28 13:44:16 +0200
commit1b687bb6b277b500c4c3d155da546ba88bc07ff6 (patch)
tree7bba2b383cdb7bf83f29b756501f9af026a3205c /svx/source/gallery2/galexpl.cxx
parent9f387fa51c138e9a01d097990e17294840aaa473 (diff)
GalleryExplorer::GetSdrObjCount return type is sal_uIntPtr
Change-Id: If7a59be1421184f948f9cf36ee72e4963d5d0595
Diffstat (limited to 'svx/source/gallery2/galexpl.cxx')
-rw-r--r--svx/source/gallery2/galexpl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/gallery2/galexpl.cxx b/svx/source/gallery2/galexpl.cxx
index 7b9058a85835..c19985c2227e 100644
--- a/svx/source/gallery2/galexpl.cxx
+++ b/svx/source/gallery2/galexpl.cxx
@@ -197,7 +197,7 @@ sal_uIntPtr GalleryExplorer::GetSdrObjCount( const OUString& rThemeName )
sal_uIntPtr GalleryExplorer::GetSdrObjCount( sal_uIntPtr nThemeId )
{
Gallery* pGal = ::Gallery::GetGalleryInstance();
- return( pGal ? GetSdrObjCount( pGal->GetThemeName( nThemeId ) ) : sal_False );
+ return( pGal ? GetSdrObjCount( pGal->GetThemeName( nThemeId ) ) : 0 );
}
bool GalleryExplorer::GetSdrObj( const OUString& rThemeName, sal_uIntPtr nSdrModelPos,