X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fbase%2Ffontchar.h;fp=src%2Fbase%2Ffontchar.h;h=40b84ea616f4f3883c9a45b87bf329d4d78bd5da;hb=16354e0421b316a62c6b9f7b0b4f3b8cf6f06284;hp=df74ae57d40bf3e6dfd58e4c22300dbfc15998c8;hpb=3239ef39dcee08fa6e8cd68cdf2727fc68cc7a8c;p=architektonas diff --git a/src/base/fontchar.h b/src/base/fontchar.h index df74ae5..40b84ea 100644 --- a/src/base/fontchar.h +++ b/src/base/fontchar.h @@ -8,7 +8,7 @@ * * @author Andrew Mustun */ -class RS_FontChar: public RS_Block +class FontChar: public Block { public: /** @@ -17,10 +17,10 @@ public: * an identifier. * @param basePoint Base point (offset) of the letter (usually 0/0). */ - RS_FontChar(RS_EntityContainer * parent, const QString & name, Vector basePoint): - RS_Block(parent, RS_BlockData(name, basePoint, false)) {} + FontChar(EntityContainer * parent, const QString & name, Vector basePoint): + Block(parent, BlockData(name, basePoint, false)) {} - virtual ~RS_FontChar() {} + virtual ~FontChar() {} /** @return RS2::EntityFontChar */ virtual RS2::EntityType rtti() const @@ -28,9 +28,9 @@ public: return RS2::EntityFontChar; } - /*friend std::ostream& operator << (std::ostream& os, const RS_FontChar& b) { + /*friend std::ostream& operator << (std::ostream& os, const FontChar& b) { os << " name: " << b.getName().latin1() << "\n"; - os << " entities: " << (RS_EntityContainer&)b << "\n"; + os << " entities: " << (EntityContainer&)b << "\n"; return os; }*/ protected: