diff options
Diffstat (limited to 'xml/string.c')
-rw-r--r-- | xml/string.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/xml/string.c b/xml/string.c index dec59a1..de4f703 100644 --- a/xml/string.c +++ b/xml/string.c @@ -1,5 +1,5 @@ /* - * $Id: string.c,v 1.14 2005/01/25 14:14:43 lordjaxom Exp $ + * $Id: string.c,v 1.15 2005/01/26 20:38:45 lordjaxom Exp $ */ #include "xml/string.h" @@ -54,8 +54,9 @@ std::string txToken::Token(const txToken &Token) cxString::tStringList cxString::mStrings; -cxString::cxString(cxSkin *Skin, bool Translate): - mSkin(Skin), +cxString::cxString(cxObject *Parent, bool Translate): + mObject(Parent), + mSkin(Parent->Skin()), mTranslate(Translate) { mStrings.push_back(this); |