aboutsummaryrefslogtreecommitdiff
path: root/src/extensible.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-01-31 02:04:43 +0000
committerGravatar Sadie Powell2022-01-31 12:01:39 +0000
commit7d3055f8c3908da493d29191b175be3f810ff05b (patch)
tree0d8def0a5c9452be28121f5f3e930b3f3010b1af /src/extensible.cpp
parentRename the ExtensionItem::type field to extype to avoid collisions. (diff)
Add the type to the Extensible class.
Diffstat (limited to 'src/extensible.cpp')
-rw-r--r--src/extensible.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/extensible.cpp b/src/extensible.cpp
index 63bcec3d9..32106e030 100644
--- a/src/extensible.cpp
+++ b/src/extensible.cpp
@@ -47,8 +47,9 @@ ExtensionItem* ExtensionManager::GetItem(const std::string& name)
return iter->second;
}
-Extensible::Extensible()
- : culled(false)
+Extensible::Extensible(ExtensionType exttype)
+ : extype(exttype)
+ , culled(false)
{
}