| 2086 | } |
| 2087 | |
| 2088 | void DeleteTextContainer(STextContainerIndex &TextContainerIndex) override |
| 2089 | { |
| 2090 | if(!TextContainerIndex.Valid()) |
| 2091 | return; |
| 2092 | |
| 2093 | STextContainer &TextContainer = GetTextContainer(TextContainerIndex); |
| 2094 | if(Graphics()->IsTextBufferingEnabled()) |
| 2095 | Graphics()->DeleteBufferContainer(TextContainer.m_StringInfo.m_QuadBufferContainerIndex, true); |
| 2096 | Graphics()->DeleteQuadContainer(TextContainer.m_StringInfo.m_SelectionQuadContainerIndex); |
| 2097 | FreeTextContainer(TextContainerIndex); |
| 2098 | } |
| 2099 | |
| 2100 | void UploadTextContainer(STextContainerIndex TextContainerIndex) override |
| 2101 | { |
no test coverage detected