Quote Originally Posted by anh5kor View Post
QString result = QString::number(timestamp/1000.0, 6, 'f', 3);
That should just be:
Qt Code:
  1. QString result = QString::number(timestamp/1000.0, 'f', 3);
To copy to clipboard, switch view to plain text mode