Guest User

Untitled

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