summaryrefslogtreecommitdiff
path: root/rsc/source/res
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-26 09:11:28 +0200
committerNoel Grandin <noel@peralex.com>2015-10-26 09:12:05 +0200
commit3d784c4af6e0fdde0b7e555ad940bc13a61c2a22 (patch)
tree58415192099a6e8c352f92ab55749244668f03bf /rsc/source/res
parentd31844da975b75e0a45121f990dee9d7cde30b30 (diff)
remove extra spaces around ::
just makes it harder to grep for methods Change-Id: I0925db2f9284972fcf7e1e3adf90cbe21f69eb15
Diffstat (limited to 'rsc/source/res')
-rw-r--r--rsc/source/res/rscclobj.cxx2
-rw-r--r--rsc/source/res/rscrange.cxx4
-rw-r--r--rsc/source/res/rsctop.cxx6
3 files changed, 6 insertions, 6 deletions
diff --git a/rsc/source/res/rscclobj.cxx b/rsc/source/res/rscclobj.cxx
index 96866dd4b819..8788ecba1659 100644
--- a/rsc/source/res/rscclobj.cxx
+++ b/rsc/source/res/rscclobj.cxx
@@ -50,7 +50,7 @@ bool RefNode::PutObjNode( ObjNode * pPutObject )
// if the node with the same name is in pObjBiTree,
// return NULL and no insert,
// if not return the pointer to the Object
-ObjNode * RefNode :: GetObjNode( const RscId & rRscId )
+ObjNode * RefNode::GetObjNode( const RscId & rRscId )
{
if( pObjBiTree )
return pObjBiTree->Search( rRscId );
diff --git a/rsc/source/res/rscrange.cxx b/rsc/source/res/rscrange.cxx
index f83792a4939b..4164bfde30a7 100644
--- a/rsc/source/res/rscrange.cxx
+++ b/rsc/source/res/rscrange.cxx
@@ -308,7 +308,7 @@ RSCINST RscIdRange::Create( RSCINST * pInst, const RSCINST & rDflt, bool bOwnCla
return aInst;
}
-void RscIdRange :: Destroy( const RSCINST & rInst )
+void RscIdRange::Destroy( const RSCINST & rInst )
{
reinterpret_cast<RscId *>(rInst.pData)->Destroy();
}
@@ -419,7 +419,7 @@ void RscBool::WriteSrc( const RSCINST & rInst, FILE * fOutput,
fprintf( fOutput, "FALSE" );
}
-RscBreakRange :: RscBreakRange( Atom nId, sal_uInt32 nTypeId )
+RscBreakRange::RscBreakRange( Atom nId, sal_uInt32 nTypeId )
: RscRange( nId, nTypeId )
{
nOutRange = 0xFFFFFFFF;
diff --git a/rsc/source/res/rsctop.cxx b/rsc/source/res/rsctop.cxx
index 6038ab932a3b..1688e3951078 100644
--- a/rsc/source/res/rsctop.cxx
+++ b/rsc/source/res/rsctop.cxx
@@ -48,7 +48,7 @@ RSCINST RscTop::GetDefault()
return aDfltInst;
}
-void RscTop :: Pre_dtor()
+void RscTop::Pre_dtor()
{
if( aDfltInst.IsInst() )
{
@@ -66,7 +66,7 @@ RscTop * RscTop::GetTypeClass() const
return NULL;
}
-sal_uInt32 RscTop :: Size()
+sal_uInt32 RscTop::Size()
{
if( pSuperClass )
return pSuperClass->Size();
@@ -74,7 +74,7 @@ sal_uInt32 RscTop :: Size()
return 0;
}
-ERRTYPE RscTop :: GetRef( const RSCINST & rInst, RscId * pRscId )
+ERRTYPE RscTop::GetRef( const RSCINST & rInst, RscId * pRscId )
{
if( pSuperClass )
return pSuperClass->GetRef( rInst, pRscId );