summaryrefslogtreecommitdiff
path: root/include/editeng/numitem.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/editeng/numitem.hxx')
-rw-r--r--include/editeng/numitem.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/editeng/numitem.hxx b/include/editeng/numitem.hxx
index 8f6882f3d463..3b24d564736d 100644
--- a/include/editeng/numitem.hxx
+++ b/include/editeng/numitem.hxx
@@ -34,7 +34,7 @@
#include <editeng/editengdllapi.h>
class SvxBrushItem;
-class Font;
+namespace vcl { class Font; }
class Graphic;
class SvxNodeNum;
namespace com{namespace sun{ namespace star{
@@ -147,7 +147,7 @@ private:
sal_Int16 eVertOrient; // vertical alignment of a bitmap
Size aGraphicSize; // Always! in 1/100 mm
- Font* pBulletFont; // Pointer to the bullet font
+ vcl::Font* pBulletFont; // Pointer to the bullet font
OUString sCharStyleName; // Character Style
@@ -177,8 +177,8 @@ public:
void SetCharFmtName(const OUString& rSet){ sCharStyleName = rSet; }
virtual OUString GetCharFmtName()const;
- void SetBulletFont(const Font* pFont);
- const Font* GetBulletFont() const {return pBulletFont;}
+ void SetBulletFont(const vcl::Font* pFont);
+ const vcl::Font* GetBulletFont() const {return pBulletFont;}
void SetBulletChar(sal_Unicode cSet){cBullet = cSet;}
sal_Unicode GetBulletChar()const {return cBullet;}
void SetBulletRelSize(sal_uInt16 nSet) {nBulletRelSize = nSet;}