Ejemplo n.º 1
0
        TextNode::TextNode(const char* v)
        {
#ifdef OX_DEBUG
            _text = v;
#endif

            const char* utfstr = v;
            int code = 0;
            utfstr = getNextCode(code, utfstr);
            while (code)
            {
                Symbol s;
                s.code = code;
                _data.push_back(s);

                utfstr = getNextCode(code, utfstr);
            }
        }
Ejemplo n.º 2
0
void HOTPDialog::on_nextButton_clicked()
{

    getNextCode();

}