| 
   20struct TextInput::Private : public  Shared    28TextInput::TextInput() : d(new Private)    41    if (!(elemText = extractNode(node, TQString::fromLatin1("title" ))).isNull())    43    if (!(elemText = extractNode(node, TQString::fromLatin1("description" ))).isNull())    44        d->description = elemText;    45    if (!(elemText = extractNode(node, TQString::fromLatin1("name" ))))    47    if (!(elemText = extractNode(node, TQString::fromLatin1("link" ))).isNull())    64    return d->description;    90    return d->title == other.title () &&    92           d->name == other.name () &&    93           d->link == other.link (); 
          
         |