Forum » » Développement » » Demande d'aide en C - MUI
Post� : 11-05-2010 19:24
Même problème si tu utilises des string il faut c_str() pour obtenir une chaîne de type char *.
void AppendTextMUI(char * text)
{
   const char * oldtext;
   GetAttr(MUIA_Floattext_Text, str, (ULONG *) &oldtext);
   {
      string newtext(oldtext);
      newtext += text;Â
      SetAttrs(str,  MUIA_Floattext_Text, (ULONG) newtext.c_str(), TAG_DONE);
   }
}
Cet article provient de Meta-MorphOS
https://www.meta-morphos.org/viewtopic.php?topic=521&forum=52