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
path: root/intern
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-08-12 04:14:31 +0300
committerCampbell Barton <campbell@blender.org>2022-08-12 04:14:31 +0300
commit408687c75f06027b5dbc13bca2961cc3da29943f (patch)
treeeb2cb093ca6bb862e8ce286800292f372fd6e80f /intern
parentfe63124c3eb26dd2bcbe18ee678ea942cb12b4bf (diff)
Cleanup: use 'filepath' for fill paths
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_Path-api.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/ghost/intern/GHOST_Path-api.cpp b/intern/ghost/intern/GHOST_Path-api.cpp
index 1b1c72d8a4b..58f36dc096d 100644
--- a/intern/ghost/intern/GHOST_Path-api.cpp
+++ b/intern/ghost/intern/GHOST_Path-api.cpp
@@ -49,10 +49,10 @@ const char *GHOST_getBinaryDir()
return systemPaths ? systemPaths->getBinaryDir() : nullptr;
}
-void GHOST_addToSystemRecentFiles(const char *filename)
+void GHOST_addToSystemRecentFiles(const char *filepath)
{
GHOST_ISystemPaths *systemPaths = GHOST_ISystemPaths::get();
if (systemPaths) {
- systemPaths->addToSystemRecentFiles(filename);
+ systemPaths->addToSystemRecentFiles(filepath);
}
}