writerfilter: drop global 'using css' from WrapPolygonHandler.hxx

Change-Id: Ibecc12f74e55360ee03baf7d170ab5589d3ed3ab
This commit is contained in:
Miklos Vajna
2014-05-18 16:14:23 +02:00
parent ab06a1b74c
commit d8adfa8e85
3 changed files with 6 additions and 8 deletions

View File

@ -37,8 +37,6 @@ namespace dmapper
{
class DomainMapper;
using namespace std;
struct SettingsTable_Impl;
class SettingsTable : public LoggedProperties, public LoggedTable

View File

@ -29,6 +29,7 @@
namespace writerfilter {
using resourcemodel::resolveSprmProps;
using namespace com::sun::star;
namespace dmapper {

View File

@ -28,13 +28,12 @@
namespace writerfilter {
namespace dmapper {
using namespace ::com::sun::star;
using resourcemodel::Fraction;
class WrapPolygon
{
public:
typedef ::std::deque<awt::Point> Points_t;
typedef ::std::deque<css::awt::Point> Points_t;
typedef ::boost::shared_ptr<WrapPolygon> Pointer_t;
private:
@ -44,7 +43,7 @@ public:
WrapPolygon();
virtual ~WrapPolygon();
void addPoint(const awt::Point & rPoint);
void addPoint(const css::awt::Point & rPoint);
Points_t::const_iterator begin() const;
Points_t::const_iterator end() const;
@ -53,10 +52,10 @@ public:
size_t size() const;
WrapPolygon::Pointer_t move(const awt::Point & rMove);
WrapPolygon::Pointer_t move(const css::awt::Point & rMove);
WrapPolygon::Pointer_t scale(const Fraction & rFractionX, const Fraction & rFractionY);
WrapPolygon::Pointer_t correctWordWrapPolygon(const awt::Size & rSrcSize);
drawing::PointSequenceSequence getPointSequenceSequence() const;
WrapPolygon::Pointer_t correctWordWrapPolygon(const css::awt::Size & rSrcSize);
css::drawing::PointSequenceSequence getPointSequenceSequence() const;
};
class WrapPolygonHandler : public LoggedProperties