diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-04-11 18:41:30 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-04-12 06:30:03 +0900 |
commit | 6524435017f38759476970447007364e762134d0 (patch) | |
tree | 6270c6bf0a7a8f1f3d817d9a4146d9dcad718e66 /svx | |
parent | d2867f4ab808c47777914bb73b848e2ab95dce89 (diff) |
make it local
Change-Id: I5e44f15c236f5535fda1932c3206f4190834ae50
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/tbxctrls/tbcontrl.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/tbxctrls/tbcontrl.cxx b/svx/source/tbxctrls/tbcontrl.cxx index 3c0f9a4b60e5..3eb8abf15ca9 100644 --- a/svx/source/tbxctrls/tbcontrl.cxx +++ b/svx/source/tbxctrls/tbcontrl.cxx @@ -701,7 +701,7 @@ IMPL_STATIC_LINK( SvxStyleBox_Impl, FocusHdl_Impl, Control*, _pCtrl ) // ----------------------------------------------------------------------- -bool GetDocFontList_Impl( const FontList** ppFontList, SvxFontNameBox_Impl* pBox ) +static bool lcl_GetDocFontList( const FontList** ppFontList, SvxFontNameBox_Impl* pBox ) { bool bChanged = false; const SfxObjectShell* pDocSh = SfxObjectShell::Current(); @@ -804,7 +804,7 @@ void SvxFontNameBox_Impl::FillList() // Save old Selection, set back in the end Selection aOldSel = GetSelection(); // Did Doc-Fontlist change? - GetDocFontList_Impl( &pFontList, this ); + lcl_GetDocFontList( &pFontList, this ); aCurText = GetText(); SetSelection( aOldSel ); } @@ -814,7 +814,7 @@ IMPL_LINK( SvxFontNameBox_Impl, CheckAndMarkUnknownFont, VclWindowEvent*, event if( event->GetId() != VCLEVENT_EDIT_MODIFY ) return 0; OUString fontname = GetSubEdit()->GetText(); - GetDocFontList_Impl( &pFontList, this ); + lcl_GetDocFontList( &pFontList, this ); // If the font is unknown, show it in italic. Font font = GetControlFont(); if( pFontList != NULL && pFontList->IsAvailable( fontname )) |