Guest User

Untitled

a guest
Jan 23rd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1.  
  2. void ChatWidget::appendText(const QString& from, const QString& text)
  3. {
  4. QString html = "<p style=\"color:#204a87\">" + formatTimeStamp(QDateTime::currentDateTime()) + " " + from + ":""</p>" + text;
  5. ui->browser->append(html);
  6. }
Add Comment
Please, Sign In to add comment