diff options
| author | 2024-03-04 13:18:04 +0000 | |
|---|---|---|
| committer | 2024-03-04 13:18:04 +0000 | |
| commit | 5f6bf286847550f386324e1e2db6c909cbd9f318 (patch) | |
| tree | 61a50d4fff21106742f4ca6be30d92eae0191875 /src/modules/m_spanningtree/main.cpp | |
| parent | Merge branch 'insp3' into master. (diff) | |
Rename some of the Module member variables.
Diffstat (limited to 'src/modules/m_spanningtree/main.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp index e07ae5ad8..8045fc92a 100644 --- a/src/modules/m_spanningtree/main.cpp +++ b/src/modules/m_spanningtree/main.cpp @@ -723,10 +723,10 @@ namespace void BroadcastModuleState(Module* mod, bool loading) { std::stringstream buffer; - buffer << (loading ? '+' : '-') << ModuleManager::ShrinkModName(mod->ModuleSourceFile); + buffer << (loading ? '+' : '-') << ModuleManager::ShrinkModName(mod->ModuleFile); std::stringstream compatbuffer; - compatbuffer << (loading ? '+' : '-') << mod->ModuleSourceFile; + compatbuffer << (loading ? '+' : '-') << mod->ModuleFile; if (loading) { |
