summaryrefslogtreecommitdiff
path: root/filter/source/flash
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-25 18:47:51 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-02-27 06:10:36 -0600
commitaeaded675c43ae8fdf795fd002f1bf6c2451fa2e (patch)
tree97490e78315e2ecf7c8e1cbe11159696b2f07b9f /filter/source/flash
parent2991d2d65bf8b99d82d1f7d209332d0c303dff21 (diff)
Remove visual noise from filter
Change-Id: Ieab1d12204bcf917b2e1bf74f3145fc96d7b207c Reviewed-on: https://gerrit.libreoffice.org/8261 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'filter/source/flash')
-rw-r--r--filter/source/flash/impswfdialog.hxx4
-rw-r--r--filter/source/flash/swfdialog.hxx6
-rw-r--r--filter/source/flash/swfexporter.hxx10
-rw-r--r--filter/source/flash/swfwriter.cxx2
-rw-r--r--filter/source/flash/swfwriter.hxx18
-rw-r--r--filter/source/flash/swfwriter1.cxx2
-rw-r--r--filter/source/flash/swfwriter2.cxx10
7 files changed, 26 insertions, 26 deletions
diff --git a/filter/source/flash/impswfdialog.hxx b/filter/source/flash/impswfdialog.hxx
index 4571de170dee..b663c081ceff 100644
--- a/filter/source/flash/impswfdialog.hxx
+++ b/filter/source/flash/impswfdialog.hxx
@@ -31,9 +31,9 @@
#include <vcl/FilterConfigItem.hxx>
-// ----------------
+
// - ImpSWFDialog -
-// ----------------
+
class ResMgr;
class Window;
diff --git a/filter/source/flash/swfdialog.hxx b/filter/source/flash/swfdialog.hxx
index e7ff9df17f1b..8c1d584c5e01 100644
--- a/filter/source/flash/swfdialog.hxx
+++ b/filter/source/flash/swfdialog.hxx
@@ -25,9 +25,9 @@
#include <svtools/genericunodialog.hxx>
-// -------------
+
// - SWFDialog -
-// -------------
+
class Window;
class ResMgr;
@@ -75,7 +75,7 @@ public:
virtual ~SWFDialog();
};
-// -----------------------------------------------------------------------------
+
#endif // SWFDialog_HXX
diff --git a/filter/source/flash/swfexporter.hxx b/filter/source/flash/swfexporter.hxx
index 67e5c1db3b2f..59138e3375ce 100644
--- a/filter/source/flash/swfexporter.hxx
+++ b/filter/source/flash/swfexporter.hxx
@@ -52,7 +52,7 @@ inline OUString VAL(sal_Int32 in)
namespace swf {
class Writer;
-// -----------------------------------------------------------------------------
+
class ShapeInfo
{
@@ -101,7 +101,7 @@ public:
typedef ::std::vector<ShapeInfo*> ShapeInfoVector;
-// -----------------------------------------------------------------------------
+
struct ShapeAnimationInfo
{
@@ -113,7 +113,7 @@ struct ShapeAnimationInfo
typedef std::vector<ShapeAnimationInfo> ShapeAnimationInfoVector;
-// -----------------------------------------------------------------------------
+
struct PageInfo
{
@@ -141,11 +141,11 @@ struct PageInfo
};
-// -----------------------------------------------------------------------------
+
typedef ::std::map<sal_uInt32, PageInfo> PageInfoMap;
-// -----------------------------------------------------------------------------
+
class FlashExporter
{
diff --git a/filter/source/flash/swfwriter.cxx b/filter/source/flash/swfwriter.cxx
index a94ee9b396fe..9e3aa1919f55 100644
--- a/filter/source/flash/swfwriter.cxx
+++ b/filter/source/flash/swfwriter.cxx
@@ -535,7 +535,7 @@ sal_Bool Writer::streamSound( const char * filename )
// mp3buffer_size (in bytes) = 1.25*num_samples + 7200.
// num_samples = the number of PCM samples in each channel. It is
// not the sum of the number of samples in the L and R channels.
-//
+
// The return code = number of bytes output in mp3buffer. This can be 0.
// If it is <0, an error occurred.
diff --git a/filter/source/flash/swfwriter.hxx b/filter/source/flash/swfwriter.hxx
index ef887ac1468e..38ee30b9cdd9 100644
--- a/filter/source/flash/swfwriter.hxx
+++ b/filter/source/flash/swfwriter.hxx
@@ -105,12 +105,12 @@ const sal_uInt8 TAG_FRAMELABEL = 43;
const sal_uInt8 TAG_HEADER = 0xff;
-///////////////////////////////////////////////////////////////////////
+
/** converts a double to a 16.16 flash fixed value */
sal_uInt32 getFixed( double fValue );
-///////////////////////////////////////////////////////////////////////
+
typedef ::std::map<sal_uInt32, sal_uInt16> ChecksumCache;
@@ -123,7 +123,7 @@ struct ltuint16
}
};
-///////////////////////////////////////////////////////////////////////
+
/** container class to create bit structures */
class BitStream
@@ -146,7 +146,7 @@ private:
sal_uInt8 mnCurrentByte;
};
-///////////////////////////////////////////////////////////////////////
+
/** this class collects all used glyphs for a given fonts and maps
characters to glyph ids.
@@ -175,7 +175,7 @@ private:
typedef std::vector<FlashFont*> FontMap;
-///////////////////////////////////////////////////////////////////////
+
/** this class helps creating flash tags */
class Tag : public SvMemoryStream
@@ -206,7 +206,7 @@ private:
sal_uInt8 mnTagId;
};
-///////////////////////////////////////////////////////////////////////
+
/** this class helps to define flash sprites */
class Sprite
@@ -227,7 +227,7 @@ private:
sal_uInt32 mnFrames;
};
-///////////////////////////////////////////////////////////////////////
+
/** this class stores a flash fill style for shapes */
class FillStyle
@@ -257,7 +257,7 @@ private:
Rectangle maBoundRect;
};
-///////////////////////////////////////////////////////////////////////
+
/** this class creates a flash movie from vcl geometry */
class Writer
@@ -445,7 +445,7 @@ private:
sal_Int32 mnJPEGCompressMode;
};
-///////////////////////////////////////////////////////////////////////
+
}
diff --git a/filter/source/flash/swfwriter1.cxx b/filter/source/flash/swfwriter1.cxx
index d27ce022fa1b..0d7b7b0ed03b 100644
--- a/filter/source/flash/swfwriter1.cxx
+++ b/filter/source/flash/swfwriter1.cxx
@@ -1849,7 +1849,7 @@ void Writer::Impl_writeActions( const GDIMetaFile& rMtf )
}
-/////////////////////////////////////////////////////////////////////////
+
void Writer::Impl_addStraightLine( BitStream& rBits, Point& rLastPoint,
diff --git a/filter/source/flash/swfwriter2.cxx b/filter/source/flash/swfwriter2.cxx
index 131777dccf13..6a2a40529851 100644
--- a/filter/source/flash/swfwriter2.cxx
+++ b/filter/source/flash/swfwriter2.cxx
@@ -132,7 +132,7 @@ sal_uInt32 BitStream::getOffset() const
return maData.size();
}
-////////////////////////////////////////////////////////////////////////////////
+
Tag::Tag( sal_uInt8 nTagId )
{
@@ -361,7 +361,7 @@ void Tag::addStream( SvStream& rIn )
(*this).WriteStream( rIn );
}
-////////////////////////////////////////////////////////////////////////////////
+
Sprite::Sprite( sal_uInt16 nId )
: mnId( nId ), mnFrames(0)
@@ -409,7 +409,7 @@ void Sprite::addTag( Tag* pNewTag )
}
}
-/////////////////////////////////////////////////////////////////////////////////
+
sal_uInt32 swf::getFixed( double fValue )
{
@@ -422,7 +422,7 @@ sal_uInt32 swf::getFixed( double fValue )
return temp;
}
-/////////////////////////////////////////////////////////////////////////////////
+
/** constructs a new flash font for the given VCL Font */
FlashFont::FlashFont( const Font& rFont, sal_uInt16 nId )
@@ -515,7 +515,7 @@ void FlashFont::write( SvStream& out )
aTag.write( out );
}
-////////////////////////////////////////////////////////////////////////////////
+
/** this c'tor creates a solid fill style */
FillStyle::FillStyle( const Color& rSolidColor )