hi
every time when i press the push Button Timer will Add 1 sec
I Want To Start Timer And Goes Up Like Stopwatch

Qt Code:
  1. {
  2. ui->setupUi(this);
  3. _second=0;
  4. _time.setHMS(0,0,0,0);
  5. startTimer(1000);
  6. }
  7.  
  8. MainWindow::~MainWindow()
  9. {
  10. delete ui;
  11. }
  12.  
  13. void MainWindow::on_timerEvent_clicked()
  14. {
  15. _second++;
  16. QTime t= _time.addSecs(_second);
  17. ui->LCurrenTtime->setText(t.toString());
  18. }
To copy to clipboard, switch view to plain text mode 
what im doing wrong?