diff options
author | Chris Sherlock <chris.sherlock@collabora.com> | 2015-12-22 15:38:16 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2015-12-22 18:16:20 +0000 |
commit | b628c642f5fffdf6008aed7915053f889b28ad84 (patch) | |
tree | 42be307b48f5a474176d8c043a483fdd77f5c024 /vcl/win/gdi | |
parent | cd945a000623838e96b7dd534ca618071c44995d (diff) |
vcl: rename ImplFindByTokenNames to FindByTokenNames
This is part of the class's public interface, it's not just an
implementation function. Therefore the prefix Impl is not needed, so
removing it.
Change-Id: I118db93e930ff42ef0b712da6cd4a6d04fd1f074
Reviewed-on: https://gerrit.libreoffice.org/20861
Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Tested-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'vcl/win/gdi')
-rw-r--r-- | vcl/win/gdi/salgdi3.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/win/gdi/salgdi3.cxx b/vcl/win/gdi/salgdi3.cxx index 7b20a631e5a6..d09176441ad8 100644 --- a/vcl/win/gdi/salgdi3.cxx +++ b/vcl/win/gdi/salgdi3.cxx @@ -500,7 +500,7 @@ namespace // get the default font for a specified locale const utl::DefaultFontConfiguration& rDefaults = utl::DefaultFontConfiguration::get(); const OUString aDefault = rDefaults.getUserInterfaceFont(rLanguageTag); - return rFontCollection.ImplFindByTokenNames(aDefault); + return rFontCollection.FindByTokenNames(aDefault); } } |