[Bf-blender-cvs] [408687c75f0] master: Cleanup: use 'filepath' for fill paths

Campbell Barton noreply at git.blender.org
Fri Aug 12 03:25:48 CEST 2022


Commit: 408687c75f06027b5dbc13bca2961cc3da29943f
Author: Campbell Barton
Date:   Fri Aug 12 11:14:31 2022 +1000
Branches: master
https://developer.blender.org/rB408687c75f06027b5dbc13bca2961cc3da29943f

Cleanup: use 'filepath' for fill paths

===================================================================

M	intern/ghost/intern/GHOST_Path-api.cpp

===================================================================

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);
   }
 }



More information about the Bf-blender-cvs mailing list