diff options
Diffstat (limited to 'src/textmanager.h')
-rw-r--r-- | src/textmanager.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/textmanager.h b/src/textmanager.h index 9043e583..f736e87c 100644 --- a/src/textmanager.h +++ b/src/textmanager.h @@ -65,8 +65,7 @@ class TextManager void place(const Text *textObj, const Text *omit, int &x, int &y, int h); - using TextList = std::list<Text *>; /**< The container type */ - TextList mTextList; /**< The container */ + std::list<Text *> mTextList; }; extern TextManager *textManager; |