renamed *Manager classes

This commit is contained in:
fourtf
2018-06-28 19:51:07 +02:00
parent 2df142bd50
commit 8ced5a1e25
30 changed files with 131 additions and 131 deletions
+3 -3
View File
@@ -11,10 +11,10 @@
namespace chatterino {
class FontManager : boost::noncopyable
class Fonts : boost::noncopyable
{
public:
FontManager();
Fonts();
// font data gets set in createFontData(...)
enum Type : uint8_t {
@@ -77,6 +77,6 @@ private:
std::vector<std::unordered_map<float, FontData>> fontsByType;
};
using FontStyle = FontManager::Type;
using FontStyle = Fonts::Type;
} // namespace chatterino