GRAPHICS: MACGUI: Release allocated objects in MacText

This commit is contained in:
Eugene Sandulenko 2023-10-12 17:23:20 +02:00
parent 8545f43fe1
commit d133aeb046
No known key found for this signature in database
GPG Key ID: 014D387312D34F08

View File

@ -195,6 +195,10 @@ struct MacTextLine {
* @note If requested column is too big, returns last character in the line
*/
uint getChunkNum(int *col);
~MacTextLine() {
delete tableSurface;
}
};
struct SelectedText {