From 564c5d6690dbf27dbbb3d0afda49cc6ee915eec2 Mon Sep 17 00:00:00 2001 From: "florent.teppe" Date: Tue, 6 Sep 2022 14:27:53 +0200 Subject: [PATCH] fixed naming convention issue --- apps/openmw/mwworld/esmstore.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/openmw/mwworld/esmstore.cpp b/apps/openmw/mwworld/esmstore.cpp index 2955e7af0c..8cba07aaa2 100644 --- a/apps/openmw/mwworld/esmstore.cpp +++ b/apps/openmw/mwworld/esmstore.cpp @@ -148,7 +148,7 @@ namespace MWWorld IDMap mStaticIds; template - static int AssignStoreToIndex(ESMStore& stores, Store& store) + static int assignStoreToIndex(ESMStore& stores, Store& store) { const std::size_t storeIndex = ESMStore::getTypeIndex(); if (stores.mStores.size() <= storeIndex) @@ -169,7 +169,7 @@ namespace MWWorld return 0; } - void SetupAfterStoresCreation(ESMStore& store) + void setupAfterStoresCreation(ESMStore& store) { for (const auto& recordStorePair : mRecNameToStore) { @@ -201,9 +201,9 @@ namespace MWWorld ESMStore::ESMStore() { mStoreImp = std::make_unique(); - std::apply([this](auto& ...x) {(ESMStoreImp::AssignStoreToIndex(*this, x), ...); }, mStoreImp->mStores); + std::apply([this](auto& ...x) {(ESMStoreImp::assignStoreToIndex(*this, x), ...); }, mStoreImp->mStores); mDynamicCount = 0; - mStoreImp->SetupAfterStoresCreation(*this); + mStoreImp->setupAfterStoresCreation(*this); getWritable().setCells(getWritable()); }