Renamed the FontServer class to FontManager.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14642 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2005-11-02 13:25:39 +00:00
parent d05a172192
commit bdd34c028f
13 changed files with 109 additions and 109 deletions
@@ -6,8 +6,8 @@
* DarkWyrm <bpmagic@columbus.rr.com>
* Axel Dörfler, axeld@pinc-software.de
*/
#ifndef FONT_SERVER_H
#define FONT_SERVER_H
#ifndef FONT_MANAGER_H
#define FONT_MANAGER_H
#include <Font.h>
@@ -28,13 +28,13 @@ class ServerFont;
/*!
\class FontServer FontServer.h
\class FontManager FontManager.h
\brief Manager for the largest part of the font subsystem
*/
class FontServer : public BLocker {
class FontManager : public BLocker {
public:
FontServer();
~FontServer();
FontManager();
~FontManager();
status_t InitCheck() { return fInitStatus; }
@@ -82,6 +82,6 @@ class FontServer : public BLocker {
};
extern FT_Library gFreeTypeLibrary;
extern FontServer *gFontServer;
extern FontManager *gFontManager;
#endif /* FONTSERVER_H_ */
#endif /* FONT_MANAGER_H */
+1 -1
View File
@@ -35,7 +35,7 @@
#include <View.h> // for B_FONT_ALL
#include "RGBColor.h"
#include "FontServer.h"
#include "FontManager.h"
#include "ServerFont.h"
#include "PatternHandler.h"