summaryrefslogtreecommitdiff
path: root/drawinglayer
diff options
context:
space:
mode:
authorPhilipp Riemer <ruderphilipp@gmail.com>2013-08-31 17:50:25 +0200
committerPhilipp Riemer <ruderphilipp@gmail.com>2013-08-31 22:41:10 +0200
commitbf42b6f9f51b4bc66e267ae24c87ac79122825cc (patch)
tree449f642fc53e3d654ae36a39877efc41a8b74fcc /drawinglayer
parent3f84d81412f123bda0dde57c4e52abe9f49f58af (diff)
fdo#62475 - remove visual noise
This is a follow up commit to - 22d1beb78a475e4846af945afde1c4d6c263b5d6 - 1c7af455ab9345304a7ac48ce2e0310de2ac8a75 Change-Id: I102685391125f3b4f7bdf838f8bd17a2283d558d
Diffstat (limited to 'drawinglayer')
-rw-r--r--drawinglayer/source/processor2d/vclprocessor2d.cxx19
1 files changed, 4 insertions, 15 deletions
diff --git a/drawinglayer/source/processor2d/vclprocessor2d.cxx b/drawinglayer/source/processor2d/vclprocessor2d.cxx
index 7418a9ccdffe..f3bd629f3d14 100644
--- a/drawinglayer/source/processor2d/vclprocessor2d.cxx
+++ b/drawinglayer/source/processor2d/vclprocessor2d.cxx
@@ -53,7 +53,6 @@
#include "getdigitlanguage.hxx"
-//////////////////////////////////////////////////////////////////////////////
// control support
#include <com/sun/star/awt/XWindow2.hpp>
@@ -62,18 +61,13 @@
#include <drawinglayer/primitive2d/controlprimitive2d.hxx>
#include <drawinglayer/primitive2d/textlayoutdevice.hxx>
-//////////////////////////////////////////////////////////////////////////////
// for test, can be removed again
-
#include <basegfx/polygon/b2dpolygonclipper.hxx>
#include <basegfx/polygon/b2dtrapezoid.hxx>
-
-//////////////////////////////////////////////////////////////////////////////
+// <- for test
using namespace com::sun::star;
-//////////////////////////////////////////////////////////////////////////////
-
namespace
{
sal_uInt32 calculateStepsForSvgGradient(const basegfx::BColor& rColorA, const basegfx::BColor& rColorB, double fDelta, double fDiscreteUnit)
@@ -98,15 +92,12 @@ namespace
return nSteps;
}
-} // end of anonymous namespace
-
-//////////////////////////////////////////////////////////////////////////////
+}
namespace drawinglayer
{
namespace processor2d
{
- //////////////////////////////////////////////////////////////////////////////
// UNO class usages
using ::com::sun::star::uno::Reference;
using ::com::sun::star::uno::UNO_QUERY;
@@ -117,7 +108,6 @@ namespace drawinglayer
using ::com::sun::star::awt::XWindow;
using ::com::sun::star::awt::PosSize::POSSIZE;
- //////////////////////////////////////////////////////////////////////////////
// rendering support
// directdraw of text simple portion or decorated portion primitive. When decorated, all the extra
@@ -1586,7 +1576,6 @@ namespace drawinglayer
}
}
- //////////////////////////////////////////////////////////////////////////////
// process support
VclProcessor2D::VclProcessor2D(
@@ -1607,7 +1596,7 @@ namespace drawinglayer
VclProcessor2D::~VclProcessor2D()
{
}
- } // end of namespace processor2d
-} // end of namespace drawinglayer
+ }
+}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */