AML v.4.X Series

Anything that doesn't fit the other categories
Toast

Re: AML v.4.X Series

Post by Toast » 03 Jul 2008, 07:42

Well crise and me had a discussion over msn that 2 letter symbols had a change to be overwritten in the future thats why i choose 3 letters

adrian_007
Senior Member
Posts: 126
Joined: 06 Jan 2008, 13:00

Re: AML v.4.X Series

Post by adrian_007 » 03 Jul 2008, 08:00

overwritten but where? only those you've created or in user class at all?

Toast

Re: AML v.4.X Series

Post by Toast » 03 Jul 2008, 08:54

Code: Select all

case COLUMN_HUBS: {
const tstring hn = Text::toT(identity.get("HN"));
const tstring hr = Text::toT(identity.get("HR"));
const tstring ho = Text::toT(identity.get("HO"));
const tstring cn = Util::toStringW(Util::toInt(identity.get("HN")) + Util::toInt(identity.get("HR")) + Util::toInt(identity.get("HO")));
const_cast<Identity&>(identity).set("AH", Text::fromT(cn));
return (hn.empty() || hr.empty() || ho.empty()) ? Util::emptyStringT : (cn + _T("(") + hn + _T("/") + hr + _T("/") + ho + _T(")"));}
Does this part even exist in other client or is it RSX++ only ?

adrian_007
Senior Member
Posts: 126
Joined: 06 Jan 2008, 13:00

Re: AML v.4.X Series

Post by adrian_007 » 03 Jul 2008, 09:59

in this part only AH iss mine (AllHubs)

Toast

Re: AML v.4.X Series

Post by Toast » 03 Jul 2008, 11:58

Okey then ill use those instead since im not that familar with the new CDM im kinda guessing but with proper documentation and help its much easier

Locked