diff options
author | Zolnai Tamás <zolnaitamas2000@gmail.com> | 2013-09-09 10:51:25 +0200 |
---|---|---|
committer | Zolnai Tamás <zolnaitamas2000@gmail.com> | 2013-09-09 13:07:52 +0200 |
commit | 81d2a8e8ae9df80948c44e6b6980ca46918719ee (patch) | |
tree | a6d3ce7c4ea1c3c5d46cb6e316d8261c16f91c83 /sw | |
parent | 7560f765b32bf9969b89b28c6733faa8098f1809 (diff) |
Avoid using in header
Change-Id: I1365cf183a768f17dd2d16f695a27d9710eb4daf
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/attributeoutputbase.hxx | 4 | ||||
-rw-r--r-- | sw/source/filter/ww8/docxattributeoutput.cxx | 2 | ||||
-rw-r--r-- | sw/source/filter/ww8/docxattributeoutput.hxx | 2 | ||||
-rw-r--r-- | sw/source/filter/ww8/rtfattributeoutput.cxx | 2 | ||||
-rw-r--r-- | sw/source/filter/ww8/rtfattributeoutput.hxx | 2 | ||||
-rw-r--r-- | sw/source/filter/ww8/ww8attributeoutput.hxx | 2 |
6 files changed, 9 insertions, 5 deletions
diff --git a/sw/source/filter/ww8/attributeoutputbase.hxx b/sw/source/filter/ww8/attributeoutputbase.hxx index 057fd3979322..ac08d74d5eca 100644 --- a/sw/source/filter/ww8/attributeoutputbase.hxx +++ b/sw/source/filter/ww8/attributeoutputbase.hxx @@ -118,7 +118,7 @@ class SwLineNumberInfo; class SwNumRule; class wwFont; -using ::editeng::SvxBorderLine; +namespace editeng { class SvxBorderLine; } class String; namespace rtl { class OUString; } @@ -442,7 +442,7 @@ protected: /// Sfx item RES_CHRATR_BOX void FormatCharBorder( const SvxBoxItem& rBox ); - virtual void CharBorder( const SvxBorderLine* pAllBorder, const sal_uInt16 nDist, const bool bShadow ) = 0; + virtual void CharBorder( const ::editeng::SvxBorderLine* pAllBorder, const sal_uInt16 nDist, const bool bShadow ) = 0; /// Sfx item RES_TXTATR_INETFMT virtual void TextINetFormat( const SwFmtINetFmt& ) = 0; diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx index c5b78ff8a578..55504b870403 100644 --- a/sw/source/filter/ww8/docxattributeoutput.cxx +++ b/sw/source/filter/ww8/docxattributeoutput.cxx @@ -112,6 +112,8 @@ #include <stdio.h> #endif +using ::editeng::SvxBorderLine; + using namespace oox; using namespace docx; using namespace sax_fastparser; diff --git a/sw/source/filter/ww8/docxattributeoutput.hxx b/sw/source/filter/ww8/docxattributeoutput.hxx index 8333517f031d..fa463001e743 100644 --- a/sw/source/filter/ww8/docxattributeoutput.hxx +++ b/sw/source/filter/ww8/docxattributeoutput.hxx @@ -473,7 +473,7 @@ protected: virtual void CharHidden( const SvxCharHiddenItem& rHidden ); /// Sfx item RES_CHRATR_BOX - virtual void CharBorder( const SvxBorderLine* pAllBorder, const sal_uInt16 nDist, const bool bShadow ); + virtual void CharBorder( const ::editeng::SvxBorderLine* pAllBorder, const sal_uInt16 nDist, const bool bShadow ); /// Sfx item RES_TXTATR_INETFMT virtual void TextINetFormat( const SwFmtINetFmt& ); diff --git a/sw/source/filter/ww8/rtfattributeoutput.cxx b/sw/source/filter/ww8/rtfattributeoutput.cxx index c4d3b29289cf..5151261e5fb0 100644 --- a/sw/source/filter/ww8/rtfattributeoutput.cxx +++ b/sw/source/filter/ww8/rtfattributeoutput.cxx @@ -101,6 +101,8 @@ #include <com/sun/star/i18n/ScriptType.hpp> +using ::editeng::SvxBorderLine; + using namespace nsSwDocInfoSubType; using namespace nsFieldFlags; using namespace sw::util; diff --git a/sw/source/filter/ww8/rtfattributeoutput.hxx b/sw/source/filter/ww8/rtfattributeoutput.hxx index 51fdcef6e17e..de1ae971a181 100644 --- a/sw/source/filter/ww8/rtfattributeoutput.hxx +++ b/sw/source/filter/ww8/rtfattributeoutput.hxx @@ -313,7 +313,7 @@ protected: virtual void CharHidden( const SvxCharHiddenItem& rHidden ); /// Sfx item RES_CHRATR_BOX - virtual void CharBorder( const SvxBorderLine* pAllBorder, const sal_uInt16 nDist, const bool bShadow ); + virtual void CharBorder( const ::editeng::SvxBorderLine* pAllBorder, const sal_uInt16 nDist, const bool bShadow ); /// Sfx item RES_TXTATR_INETFMT virtual void TextINetFormat( const SwFmtINetFmt& ); diff --git a/sw/source/filter/ww8/ww8attributeoutput.hxx b/sw/source/filter/ww8/ww8attributeoutput.hxx index c1e0c2779895..3c37de5aa86e 100644 --- a/sw/source/filter/ww8/ww8attributeoutput.hxx +++ b/sw/source/filter/ww8/ww8attributeoutput.hxx @@ -294,7 +294,7 @@ protected: virtual void CharHidden( const SvxCharHiddenItem& ); /// Sfx item RES_CHRATR_BOX - virtual void CharBorder( const SvxBorderLine* pAllBorder, const sal_uInt16 nDist, const bool bShadow ); + virtual void CharBorder( const ::editeng::SvxBorderLine* pAllBorder, const sal_uInt16 nDist, const bool bShadow ); /// Sfx item RES_TXTATR_INETFMT virtual void TextINetFormat( const SwFmtINetFmt& ); |