Cleanup: rename BLI_appdir_fonts_* -> font

Plural name doesn't fit with textures, sounds & other paths
that may be added.

Also quiet unused warning.
This commit is contained in:
Campbell Barton 2019-05-19 14:50:02 +10:00
parent 06c4139a68
commit 7decb9ad08
3 changed files with 7 additions and 6 deletions

View File

@ -45,8 +45,8 @@ void BKE_appdir_program_path_init(const char *argv0);
const char *BKE_appdir_program_path(void);
const char *BKE_appdir_program_dir(void);
/* return OS fonts directory */
bool BKE_appdir_fonts_folder_default(char *dir);
/* Return OS fonts directory. */
bool BKE_appdir_font_folder_default(char *dir);
/* find python executable */
bool BKE_appdir_program_python_search(char *fullpath,

View File

@ -1027,7 +1027,7 @@ void BKE_tempdir_session_purge(void)
}
/* Gets a good default directory for fonts */
bool BKE_appdir_fonts_folder_default(char *dir)
bool BKE_appdir_font_folder_default(char *dir)
{
bool success = false;
#ifdef WIN32
@ -1035,6 +1035,7 @@ bool BKE_appdir_fonts_folder_default(char *dir)
success = SHGetSpecialFolderPathW(0, wpath, CSIDL_FONTS, 0);
BLI_strncpy_wchar_as_utf8(dir, wpath, FILE_MAXDIR);
#endif
/* TODO: Values for other OSs */
/* TODO: Values for other platforms. */
UNUSED_VARS(dir);
return success;
}

View File

@ -94,8 +94,8 @@ void BLO_update_defaults_userpref_blend(void)
/* Leave temp directory empty, will then get appropriate value per OS. */
U.tempdir[0] = '\0';
/* System-specific fonts directory */
BKE_appdir_fonts_folder_default(U.fontdir);
/* System-specific fonts directory. */
BKE_appdir_font_folder_default(U.fontdir);
/* Only enable tooltips translation by default,
* without actually enabling translation itself, for now. */