diff options
author | Nigel Hawkins <n.hawkins@gmx.com> | 2011-07-14 09:49:14 +0100 |
---|---|---|
committer | Nigel Hawkins <n.hawkins@gmx.com> | 2011-07-14 09:51:22 +0100 |
commit | b1e607a2ee4be0bf305c20fb5ba60bad3f0ed316 (patch) | |
tree | 8ec59323ea9d2853e085942f886b36e1c3c7e53b /svtools/inc | |
parent | 364b742f3674bf5c90067ba473794042d890e325 (diff) |
Fix "unused attribute" build error.
This reverts parts of
82ea128f190dbe8d707cb140a5a2bb2b48bef58d
e1309004099d1a1c0a9bc1ba6de9e5054629da3c
which were a bit over-zealous at removing "unused" stuff. LGPLv3+/MPL
Diffstat (limited to 'svtools/inc')
-rw-r--r-- | svtools/inc/svtools/txtattr.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/svtools/inc/svtools/txtattr.hxx b/svtools/inc/svtools/txtattr.hxx index 2b6028965475..bf4c8e38b007 100644 --- a/svtools/inc/svtools/txtattr.hxx +++ b/svtools/inc/svtools/txtattr.hxx @@ -59,7 +59,9 @@ public: virtual ~TextAttrib(); - sal_uInt16 Which() const { return mnWhich; } + sal_uInt16 Which() const { return mnWhich; } + virtual void SetFont( Font& rFont ) const = 0; + virtual TextAttrib* Clone() const = 0; virtual int operator==( const TextAttrib& rAttr ) const = 0; int operator!=( const TextAttrib& rAttr ) const |