summaryrefslogtreecommitdiff
path: root/filter/source/flash
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-06-12 14:06:28 +0200
committerNoel Grandin <noel@peralex.com>2014-06-17 10:55:17 +0200
commit3e82897353e576dc6e3fbf55371fda5a0c3415df (patch)
tree71c2f03128885000efae1852dccb504f8355c79e /filter/source/flash
parentec95abf2d8afeec38c9225ea49caa0e08d82b504 (diff)
improve the inlinesimplememberfunctions clang plugin
Change-Id: I6d5a952901648e01904ef5c37f953c517304d31e
Diffstat (limited to 'filter/source/flash')
-rw-r--r--filter/source/flash/swfwriter.cxx7
-rw-r--r--filter/source/flash/swfwriter.hxx2
2 files changed, 1 insertions, 8 deletions
diff --git a/filter/source/flash/swfwriter.cxx b/filter/source/flash/swfwriter.cxx
index 9ce5f7867d72..e1858f2a5ba5 100644
--- a/filter/source/flash/swfwriter.cxx
+++ b/filter/source/flash/swfwriter.cxx
@@ -288,13 +288,6 @@ void Writer::endTag()
-sal_uInt16 Writer::createID()
-{
- return mnNextId++;
-}
-
-
-
void Writer::showFrame()
{
startTag( TAG_SHOWFRAME );
diff --git a/filter/source/flash/swfwriter.hxx b/filter/source/flash/swfwriter.hxx
index 2d0a4aa4fabe..f54dd2904d85 100644
--- a/filter/source/flash/swfwriter.hxx
+++ b/filter/source/flash/swfwriter.hxx
@@ -332,7 +332,7 @@ private:
void startTag( sal_uInt8 nTagId );
void endTag();
- sal_uInt16 createID();
+ sal_uInt16 createID() { return mnNextId++; }
void Impl_writeBmp( sal_uInt16 nBitmapId, sal_uInt32 width, sal_uInt32 height, sal_uInt8 *pCompressed, sal_uInt32 compressed_size );
void Impl_writeImage( const BitmapEx& rBmpEx, const Point& rPt, const Size& rSz, const Point& rSrcPt, const Size& rSrcSz, const Rectangle& rClipRect, bool bMap );