summaryrefslogtreecommitdiffstats
path: root/oox/source/ole/olehelper.cxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-06-25 05:22:57 +0200
committerMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-06-25 05:41:11 +0200
commitca362d6348e4d0a29317492b3c8ef9637a656f4f (patch)
tree80e13761f3d287077dfb0620638fd0397087c9e4 /oox/source/ole/olehelper.cxx
parentremove whitespace (diff)
downloadcore-ca362d6348e4d0a29317492b3c8ef9637a656f4f.tar.gz
core-ca362d6348e4d0a29317492b3c8ef9637a656f4f.zip
remove whitespaces
Change-Id: Ie14ba3dcb97f20479a04538748ef2c1c9e6c5dac
Diffstat (limited to 'oox/source/ole/olehelper.cxx')
-rw-r--r--oox/source/ole/olehelper.cxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/oox/source/ole/olehelper.cxx b/oox/source/ole/olehelper.cxx
index 8b393ea0dc91..420a80dc4158 100644
--- a/oox/source/ole/olehelper.cxx
+++ b/oox/source/ole/olehelper.cxx
@@ -44,8 +44,6 @@
namespace oox {
namespace ole {
-
-
using ::com::sun::star::form::XFormComponent;
using ::com::sun::star::form::XForm;
using ::com::sun::star::awt::XControlModel;
@@ -70,8 +68,6 @@ using ::com::sun::star::lang::XServiceInfo;
using namespace ::com::sun::star::form;
-
-
namespace {
const sal_uInt32 OLE_COLORTYPE_MASK = 0xFF000000;
@@ -83,7 +79,6 @@ const sal_uInt32 OLE_COLORTYPE_SYSCOLOR = 0x80000000;
const sal_uInt32 OLE_PALETTECOLOR_MASK = 0x0000FFFF;
const sal_uInt32 OLE_SYSTEMCOLOR_MASK = 0x0000FFFF;
-
/** Swaps the red and blue component of the passed color. */
inline sal_uInt32 lclSwapRedBlue( sal_uInt32 nColor )
{
@@ -96,8 +91,6 @@ inline sal_Int32 lclDecodeBgrColor( sal_uInt32 nOleColor )
return static_cast< sal_Int32 >( lclSwapRedBlue( nOleColor ) & 0xFFFFFF );
}
-
-
const sal_uInt32 OLE_STDPIC_ID = 0x0000746C;
struct GUIDCNamePair
@@ -197,8 +190,6 @@ GUIDCNamePairMap& classIdToGUIDCNamePairMap::get()
return theInst.mnIdToGUIDCNamePairMap;
}
-
-
template< typename Type >
void lclAppendHex( OUStringBuffer& orBuffer, Type nValue )
{
@@ -211,8 +202,6 @@ void lclAppendHex( OUStringBuffer& orBuffer, Type nValue )
} // namespace
-
-
StdFontInfo::StdFontInfo() :
mnHeight( 0 ),
mnWeight( OLE_STDFONT_NORMAL ),
@@ -231,8 +220,6 @@ StdFontInfo::StdFontInfo( const OUString& rName, sal_uInt32 nHeight,
{
}
-
-
sal_Int32 OleHelper::decodeOleColor(
const GraphicHelper& rGraphicHelper, sal_uInt32 nOleColor, bool bDefaultColorBgr )
{
@@ -548,7 +535,6 @@ bool MSConvertOCXControls::ReadOCXStorage( SotStorageRef& xOleStg,
SvStorageStreamRef pContents = xOleStg->OpenSotStream( OUString("contents"));
BinaryXInputStream aInStrm( Reference< XInputStream >( new utl::OSeekableInputStreamWrapper( *pContents ) ), true );
-
SvStorageStreamRef pClsStrm = xOleStg->OpenSotStream(OUString("\1CompObj"));
BinaryXInputStream aClsStrm( Reference< XInputStream >( new utl::OSeekableInputStreamWrapper(*pClsStrm ) ), true );
aClsStrm.skip(12);