summaryrefslogtreecommitdiff
path: root/editeng/inc/editeng/colritem.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'editeng/inc/editeng/colritem.hxx')
-rw-r--r--editeng/inc/editeng/colritem.hxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/editeng/inc/editeng/colritem.hxx b/editeng/inc/editeng/colritem.hxx
index 947c679d7f82..c71829bcee49 100644
--- a/editeng/inc/editeng/colritem.hxx
+++ b/editeng/inc/editeng/colritem.hxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -42,17 +42,17 @@ namespace rtl
// class SvxColorItem ----------------------------------------------------
-/* [Beschreibung]
+/* [Beschreibung]
Dieses Item beschreibt eine Farbe.
*/
-#define VERSION_USEAUTOCOLOR 1
+#define VERSION_USEAUTOCOLOR 1
class EDITENG_DLLPUBLIC SvxColorItem : public SfxPoolItem
{
private:
- Color mColor;
+ Color mColor;
public:
TYPEINFO();
@@ -64,19 +64,19 @@ public:
~SvxColorItem();
// "pure virtual Methoden" vom SfxPoolItem
- virtual int operator==( const SfxPoolItem& ) const;
- virtual bool QueryValue( com::sun::star::uno::Any& rVal, BYTE nMemberId = 0 ) const;
- virtual bool PutValue( const com::sun::star::uno::Any& rVal, BYTE nMemberId = 0 );
- virtual USHORT GetVersion( USHORT nFileVersion ) const;
+ virtual int operator==( const SfxPoolItem& ) const;
+ virtual bool QueryValue( com::sun::star::uno::Any& rVal, BYTE nMemberId = 0 ) const;
+ virtual bool PutValue( const com::sun::star::uno::Any& rVal, BYTE nMemberId = 0 );
+ virtual USHORT GetVersion( USHORT nFileVersion ) const;
virtual SfxItemPresentation GetPresentation( SfxItemPresentation ePres,
SfxMapUnit eCoreMetric,
SfxMapUnit ePresMetric,
String &rText, const IntlWrapper * = 0 ) const;
- virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const;
- virtual SfxPoolItem* Create(SvStream &, USHORT) const;
- virtual SvStream& Store(SvStream &, USHORT nItemVersion) const;
+ virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const;
+ virtual SfxPoolItem* Create(SvStream &, USHORT) const;
+ virtual SvStream& Store(SvStream &, USHORT nItemVersion) const;
inline SvxColorItem& operator=(const SvxColorItem& rColor)
{
@@ -84,11 +84,11 @@ public:
return *this;
}
- const Color& GetValue() const
+ const Color& GetValue() const
{
return mColor;
}
- void SetValue( const Color& rNewCol );
+ void SetValue( const Color& rNewCol );
};