Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-05-19 07:50:02 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-05-19 07:50:02 +0300
commit7decb9ad080eef002c6093581d486727836dbbf0 (patch)
tree8394bdacfa0d3eb0979e632327b31a7a66030620 /source/blender
parent06c4139a68330dc74ec4e87f6b5c5f2b7a25ad74 (diff)
Cleanup: rename BLI_appdir_fonts_* -> font
Plural name doesn't fit with textures, sounds & other paths that may be added. Also quiet unused warning.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/blenkernel/BKE_appdir.h4
-rw-r--r--source/blender/blenkernel/intern/appdir.c5
-rw-r--r--source/blender/blenloader/intern/versioning_defaults.c4
3 files changed, 7 insertions, 6 deletions
diff --git a/source/blender/blenkernel/BKE_appdir.h b/source/blender/blenkernel/BKE_appdir.h
index 7d7a16f6702..e55cb69a5c6 100644
--- a/source/blender/blenkernel/BKE_appdir.h
+++ b/source/blender/blenkernel/BKE_appdir.h
@@ -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,
diff --git a/source/blender/blenkernel/intern/appdir.c b/source/blender/blenkernel/intern/appdir.c
index 5c4c7066d64..14a20689db0 100644
--- a/source/blender/blenkernel/intern/appdir.c
+++ b/source/blender/blenkernel/intern/appdir.c
@@ -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;
}
diff --git a/source/blender/blenloader/intern/versioning_defaults.c b/source/blender/blenloader/intern/versioning_defaults.c
index 604974e5075..d43bf020f7d 100644
--- a/source/blender/blenloader/intern/versioning_defaults.c
+++ b/source/blender/blenloader/intern/versioning_defaults.c
@@ -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. */