summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-02-07 16:07:03 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-02-07 19:27:29 +0100
commit6158c9a899db83e04c78a1c949418434a89d4fdc (patch)
treee4d3d5992082dffdd12591d4b515bd3aeb4b2372
parent94ab2b69239f8c2eb7019c2b0ee61c63ac829592 (diff)
Unused 'using namespace ::comphelper'
Change-Id: I5605c26fe0abd4c064b20562bf52b5e400bc7f33
-rw-r--r--sw/source/filter/ww8/rtfexport.cxx10
1 files changed, 3 insertions, 7 deletions
diff --git a/sw/source/filter/ww8/rtfexport.cxx b/sw/source/filter/ww8/rtfexport.cxx
index 01931bce5817..068e59d416ef 100644
--- a/sw/source/filter/ww8/rtfexport.cxx
+++ b/sw/source/filter/ww8/rtfexport.cxx
@@ -46,12 +46,8 @@
#endif
#include <svx/xflclit.hxx>
-using ::editeng::SvxBorderLine;
-using namespace ::comphelper;
using namespace ::com::sun::star;
-using sw::mark::IMark;
-
// the default text encoding for the export, if it doesn't fit unicode will
// be used
#define DEF_ENCODING RTL_TEXTENCODING_ASCII_US
@@ -116,7 +112,7 @@ void RtfExport::AppendBookmarks(const SwTxtNode& rNode, sal_Int32 nAktPos, sal_I
for (IMarkVector::const_iterator it = aMarks.begin(), end = aMarks.end();
it != end; ++it)
{
- IMark* pMark = (*it);
+ sw::mark::IMark* pMark = (*it);
const sal_Int32 nStart = pMark->GetMarkStart().nContent.GetIndex();
const sal_Int32 nEnd = pMark->GetMarkEnd().nContent.GetIndex();
@@ -153,7 +149,7 @@ void RtfExport::AppendAnnotationMarks(const SwTxtNode& rNode, sal_Int32 nAktPos,
for (IMarkVector::const_iterator it = aMarks.begin(), end = aMarks.end();
it != end; ++it)
{
- IMark* pMark = (*it);
+ sw::mark::IMark* pMark = (*it);
const sal_Int32 nStart = pMark->GetMarkStart().nContent.GetIndex();
const sal_Int32 nEnd = pMark->GetMarkEnd().nContent.GetIndex();
@@ -921,7 +917,7 @@ void RtfExport::InsColor(const Color& rCol)
void RtfExport::InsColorLine(const SvxBoxItem& rBox)
{
- const SvxBorderLine* pLine = 0;
+ const editeng::SvxBorderLine* pLine = 0;
if (rBox.GetTop())
InsColor((pLine = rBox.GetTop())->GetColor());