summaryrefslogtreecommitdiff
path: root/sfx2/inc/sfx2/app.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-03-16 17:30:29 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-03-16 21:25:17 +0000
commit918f8ed91e325606a44d088da5fbbf8c463dffba (patch)
treec44b3ccf10b0325aa85a3ea5830a87dea5edb1a2 /sfx2/inc/sfx2/app.hxx
parent4d362d2362661670579c03bdccf0063ee6569604 (diff)
"show logo" in slideshow settings doesn't do anything
This wants to load about.png which doesn't exist anymore. "about.svg" does, but is a rather abstract background image for the about dialog these days, so use "flat_logo.svg" instead. Which requires moving the svg loader out of cui into sfx2 for re-use. Change-Id: I8654f0f93766556ef4ed4b87eff35b45d8189761
Diffstat (limited to 'sfx2/inc/sfx2/app.hxx')
-rw-r--r--sfx2/inc/sfx2/app.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/inc/sfx2/app.hxx b/sfx2/inc/sfx2/app.hxx
index 24c0294211d9..ab884406e5de 100644
--- a/sfx2/inc/sfx2/app.hxx
+++ b/sfx2/inc/sfx2/app.hxx
@@ -257,10 +257,10 @@ public:
SAL_DLLPRIVATE SfxModule* GetModule_Impl();
SAL_DLLPRIVATE ResMgr* GetOffResManager_Impl();
- /* loads a branded bitmap - that can be overridden per locale */
- static bool LoadBrandBitmap (const char* pName, BitmapEx &rBitmap);
- /** loads the application logo as used in the about dialog and impress slideshow pause screen */
- static Image GetApplicationLogo();
+ static bool loadBrandSvg(const char *pName, BitmapEx &rBitmap, int nWidth);
+
+ /** loads the application logo as used in the impress slideshow pause screen */
+ static BitmapEx GetApplicationLogo(long nWidth);
};
#define SFX_APP() SfxGetpApp()