Fix typo in wxWebViewEdgeImpl::Uninitialize() name

As this is a private header, we can fix this without any compatibility
concerns.

Thanks codespell for finding it.
This commit is contained in:
Vadim Zeitlin
2020-06-27 20:22:47 +02:00
parent d7f19ee610
commit fca9460522
2 changed files with 3 additions and 3 deletions

View File

@@ -68,7 +68,7 @@ public:
static bool Initialize(); static bool Initialize();
static void Uninitalize(); static void Uninitialize();
friend class wxWebViewEdgeModule; friend class wxWebViewEdgeModule;
}; };

View File

@@ -135,7 +135,7 @@ bool wxWebViewEdgeImpl::Initialize()
return false; return false;
} }
void wxWebViewEdgeImpl::Uninitalize() void wxWebViewEdgeImpl::Uninitialize()
{ {
if (ms_isAvailable == 1) if (ms_isAvailable == 1)
{ {
@@ -861,7 +861,7 @@ public:
virtual void OnExit() wxOVERRIDE virtual void OnExit() wxOVERRIDE
{ {
wxWebViewEdgeImpl::Uninitalize(); wxWebViewEdgeImpl::Uninitialize();
} }
private: private: