man i already made it to get the text, now when i do something like this:
tabs
->addTab
(new Channel
(this,
QString(buffer
), socket,
""),
QString(buffer
));
tabs->addTab(new Channel(this, QString(buffer), socket, ""), QString(buffer));
To copy to clipboard, switch view to plain text mode
it works but i need it to append a text in the text edit of the channel, when i call printText (from the channel class) from another function it doesnt do anything:
Channel *chan = new Channel(this, channel.c_str(), socket, tmp);
chan->printText(tmp);
Channel *chan = new Channel(this, channel.c_str(), socket, tmp);
chan->printText(tmp);
To copy to clipboard, switch view to plain text mode
any ideas?
Bookmarks