diff --git a/lib/bc b/lib/bc index e21b610..6cff259 160000 --- a/lib/bc +++ b/lib/bc @@ -1 +1 @@ -Subproject commit e21b610abfe7b491b3996ce57520fcfba889e120 +Subproject commit 6cff259dcac37698fd0c770d806646be13402b43 diff --git a/lib/common b/lib/common index 43b5def..0a260b7 160000 --- a/lib/common +++ b/lib/common @@ -1 +1 @@ -Subproject commit 43b5def8777ca979b603398916ca162437597958 +Subproject commit 0a260b7bebe28bbc5998068f6f14e459a869de16 diff --git a/lib/squall b/lib/squall index 5aeb2f5..3d14119 160000 --- a/lib/squall +++ b/lib/squall @@ -1 +1 @@ -Subproject commit 5aeb2f51a52c44187d02219ff7a8c92074f23b99 +Subproject commit 3d141195362dc7557d09deab5b25c3647ee4764e diff --git a/lib/typhoon b/lib/typhoon index fdefabe..036c986 160000 --- a/lib/typhoon +++ b/lib/typhoon @@ -1 +1 @@ -Subproject commit fdefabe4f09b6413fd33242c05243121c296c91c +Subproject commit 036c986cd455179873baeb75e81fd3edaca4abbe diff --git a/src/gx/font/CGxFont.cpp b/src/gx/font/CGxFont.cpp index b0ae63f..5c01fd8 100644 --- a/src/gx/font/CGxFont.cpp +++ b/src/gx/font/CGxFont.cpp @@ -686,7 +686,7 @@ void CGxFont::ClearGlyphs() { this->m_activeCharacters.Clear(); - this->m_activeCharacterCache.DeleteAll(); + this->m_activeCharacterCache.Clear(); this->m_kernInfo.Clear(); } diff --git a/src/net/connection/NetClient.cpp b/src/net/connection/NetClient.cpp index 580e677..e8db9b3 100644 --- a/src/net/connection/NetClient.cpp +++ b/src/net/connection/NetClient.cpp @@ -94,7 +94,7 @@ void NETEVENTQUEUE::Poll() { client->DelRef(); - this->m_eventQueue.DeleteAll(); + this->m_eventQueue.Clear(); this->m_critSect.Leave(); } diff --git a/src/ui/CLayoutFrame.cpp b/src/ui/CLayoutFrame.cpp index dcfb8f5..3025ca3 100644 --- a/src/ui/CLayoutFrame.cpp +++ b/src/ui/CLayoutFrame.cpp @@ -286,7 +286,7 @@ void CLayoutFrame::DestroyLayout() { frame->m_flags &= ~0x8; } - this->m_resizeList.DeleteAll(); + this->m_resizeList.Clear(); } void CLayoutFrame::FreePoints() { diff --git a/src/ui/CRenderBatch.cpp b/src/ui/CRenderBatch.cpp index 1006271..d80290a 100644 --- a/src/ui/CRenderBatch.cpp +++ b/src/ui/CRenderBatch.cpp @@ -53,7 +53,7 @@ void CRenderBatch::Clear() { this->m_stringbatch = nullptr; } - this->m_callbacks.DeleteAll(); + this->m_callbacks.Clear(); this->m_count = 0; } diff --git a/src/ui/CSimpleHTML.cpp b/src/ui/CSimpleHTML.cpp index a679ea9..8b7c110 100644 --- a/src/ui/CSimpleHTML.cpp +++ b/src/ui/CSimpleHTML.cpp @@ -95,7 +95,7 @@ void CSimpleHTML::AddText(const char* text, HTML_TEXT_TYPE type, uint32_t justif } void CSimpleHTML::ClearContent() { - this->m_content.DeleteAll(); + this->m_content.Clear(); this->m_layoutAnchor = nullptr; this->m_layoutOffset = 0.0f;