summaryrefslogtreecommitdiff
path: root/vcl/inc
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@suse.cz>2013-01-09 11:16:47 +0100
committerJan Holesovsky <kendy@suse.cz>2013-01-09 11:17:53 +0100
commit0721b5b83e34de1e2fcb320d6a7deae1ad109d61 (patch)
tree0c210865ffc8df7218f47b9bb6f87647c5f80401 /vcl/inc
parent0d91792ae34ca6531fbd6244d7717a2738f6a607 (diff)
Personas: As Michael suggested, use BitmapEx instead of BitmapEx*.
Change-Id: Ib1d84b37d452785d12502095c0eedaac4a25fb6b
Diffstat (limited to 'vcl/inc')
-rw-r--r--vcl/inc/vcl/settings.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/inc/vcl/settings.hxx b/vcl/inc/vcl/settings.hxx
index d4d44388d4c4..8e49b2cc9fdd 100644
--- a/vcl/inc/vcl/settings.hxx
+++ b/vcl/inc/vcl/settings.hxx
@@ -23,13 +23,13 @@
#include "tools/solar.h"
#include "vcl/dllapi.h"
#include "tools/color.hxx"
+#include "vcl/bitmapex.hxx"
#include "vcl/font.hxx"
#include "vcl/accel.hxx"
#include "vcl/wall.hxx"
#include <i18npool/languagetag.hxx>
#include <unotools/syslocale.hxx>
-class BitmapEx;
class CollatorWrapper;
class LocaleDataWrapper;
@@ -351,8 +351,8 @@ private:
OUString maPersonaHeaderFooter; ///< Cache the settings to detect changes.
- BitmapEx* mpPersonaHeaderBitmap; ///< Cache the header bitmap.
- BitmapEx* mpPersonaFooterBitmap; ///< Cache the footer bitmap.
+ BitmapEx mpPersonaHeaderBitmap; ///< Cache the header bitmap.
+ BitmapEx mpPersonaFooterBitmap; ///< Cache the footer bitmap.
};
#define DEFAULT_WORKSPACE_GRADIENT_START_COLOR Color( 0xa3, 0xae, 0xb8 )
@@ -866,8 +866,8 @@ public:
void SetFrameStyle( const FrameStyle& rStyle )
{ CopyData(); mpData->maFrameStyle = rStyle; }
- const BitmapEx* GetPersonaHeader() const;
- const BitmapEx* GetPersonaFooter() const;
+ const BitmapEx GetPersonaHeader() const;
+ const BitmapEx GetPersonaFooter() const;
void SetStandardStyles();