Kaydet (Commit) fc6fa71e authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Make lcl functions static

Change-Id: Ia8439fda69324a48660e6b6c5b954c6d3eb14bc9
üst 3f00118c
...@@ -394,7 +394,7 @@ static sal_uInt16 aAddPgRg[] = { ...@@ -394,7 +394,7 @@ static sal_uInt16 aAddPgRg[] = {
0 0
}; };
size_t lcl_GetFrmMapCount( const FrmMap* pMap) static size_t lcl_GetFrmMapCount( const FrmMap* pMap)
{ {
if ( pMap ) if ( pMap )
{ {
...@@ -567,7 +567,7 @@ SvxSwFramePosString::StringId lcl_ChangeResIdToVerticalOrRTL(SvxSwFramePosString ...@@ -567,7 +567,7 @@ SvxSwFramePosString::StringId lcl_ChangeResIdToVerticalOrRTL(SvxSwFramePosString
// helper method in order to determine all possible // helper method in order to determine all possible
// listbox relations in a relation map for a given relation // listbox relations in a relation map for a given relation
sal_uLong lcl_GetLBRelationsForRelations( const sal_uInt16 _nRel ) static sal_uLong lcl_GetLBRelationsForRelations( const sal_uInt16 _nRel )
{ {
sal_uLong nLBRelations = 0L; sal_uLong nLBRelations = 0L;
...@@ -585,9 +585,9 @@ sal_uLong lcl_GetLBRelationsForRelations( const sal_uInt16 _nRel ) ...@@ -585,9 +585,9 @@ sal_uLong lcl_GetLBRelationsForRelations( const sal_uInt16 _nRel )
// helper method on order to determine all possible // helper method on order to determine all possible
// listbox relations in a relation map for a given string ID // listbox relations in a relation map for a given string ID
sal_uLong lcl_GetLBRelationsForStrID( const FrmMap* _pMap, static sal_uLong lcl_GetLBRelationsForStrID( const FrmMap* _pMap,
const SvxSwFramePosString::StringId _eStrId, const SvxSwFramePosString::StringId _eStrId,
const bool _bUseMirrorStr ) const bool _bUseMirrorStr )
{ {
sal_uLong nLBRelations = 0L; sal_uLong nLBRelations = 0L;
...@@ -2740,7 +2740,7 @@ IMPL_LINK_NOARG(SwFrmURLPage, InsertFileHdl) ...@@ -2740,7 +2740,7 @@ IMPL_LINK_NOARG(SwFrmURLPage, InsertFileHdl)
return 0; return 0;
} }
void lcl_Move(Window& rWin, sal_Int32 nDiff) static void lcl_Move(Window& rWin, sal_Int32 nDiff)
{ {
Point aPos(rWin.GetPosPixel()); Point aPos(rWin.GetPosPixel());
aPos.Y() -= nDiff; aPos.Y() -= nDiff;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment