From 5e4210b8783d99f329e28e80ace02c2665303d85 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Fri, 16 May 2025 23:06:39 +0100 Subject: [PATCH] Fix mismatching Doxygen param names --- cpp/include/loot/database_interface.h | 10 +++++----- cpp/include/loot/game_interface.h | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/cpp/include/loot/database_interface.h b/cpp/include/loot/database_interface.h index 136b8627..45d9fd8e 100644 --- a/cpp/include/loot/database_interface.h +++ b/cpp/include/loot/database_interface.h @@ -50,7 +50,7 @@ public: * @brief Loads the masterlist from the path specified. * @details Can be called multiple times, each time replacing the * previously-loaded data. - * @param masterlist_path + * @param masterlistPath * The relative or absolute path to the masterlist file that should be * loaded. */ @@ -62,10 +62,10 @@ public: specified. * @details Can be called multiple times, each time replacing the * previously-loaded data. - * @param masterlist_path + * @param masterlistPath * The relative or absolute path to the masterlist file that should be * loaded. - * @param masterlist_prelude_path + * @param masterlistPreludePath * The relative or absolute path to the masterlist prelude file that * should be loaded. */ @@ -77,7 +77,7 @@ public: * @brief Loads the userlist from the path specified. * @details Can be called multiple times, each time replacing the * previously-loaded data. - * @param userlist_path + * @param userlistPath * The relative or absolute path to the userlist file that should be * loaded. */ @@ -107,7 +107,7 @@ public: virtual void WriteMinimalList(const std::filesystem::path& outputFile, const bool overwrite) const = 0; - /** + /** * @brief Evaluate the given condition string. * @param condition A condition string. */ diff --git a/cpp/include/loot/game_interface.h b/cpp/include/loot/game_interface.h index 3ebcf1f2..ec64c5bd 100644 --- a/cpp/include/loot/game_interface.h +++ b/cpp/include/loot/game_interface.h @@ -168,7 +168,7 @@ public: * loaded, and reads the contents of each plugin. No changes are * applied to the load order used by the game. This function does * not load or evaluate the masterlist or userlist. - * @param pluginPaths + * @param pluginFilenames * The plugins to sort, in their current load order. All given plugins * must have been loaded using `LoadPlugins()`. * @returns A vector of the given plugin filenames in their sorted load