diff options
author | Peter Powell <petpow@saberuk.com> | 2019-08-13 14:03:51 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2019-08-13 15:02:25 +0100 |
commit | 703ba72071b970caaa7554b1e58a13def57694dc (patch) | |
tree | 6db8b7595071d6114397350ebd8611e63056779f /src/modules | |
parent | d1513c8c6064414faaa401592d463e7149a772ba (diff) |
Convert LocalExtItem to a typedef and deprecate it.
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/extra/m_geo_maxmind.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/extra/m_geo_maxmind.cpp b/src/modules/extra/m_geo_maxmind.cpp index 767d00114..b964a393c 100644 --- a/src/modules/extra/m_geo_maxmind.cpp +++ b/src/modules/extra/m_geo_maxmind.cpp @@ -32,11 +32,11 @@ #include "modules/geolocation.h" #include <maxminddb.h> -class GeolocationExtItem : public LocalExtItem +class GeolocationExtItem : public ExtensionItem { public: GeolocationExtItem(Module* parent) - : LocalExtItem("geolocation", ExtensionItem::EXT_USER, parent) + : ExtensionItem("geolocation", ExtensionItem::EXT_USER, parent) { } |