Guest User

Untitled

a guest
Jul 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. update();
  2. repaint();
  3.  
  4. void MainWindow::on_pushButton_ReloadSettings_clicked()
  5. {
  6. ui->lineEditANID->update();
  7. ui->lineEditANID->repaint();
  8. }
  9.  
  10. myTimer= new QTimer(this);
  11. myTimer->setInterval(1000); // ms
  12. connect(myTimer, SIGNAL(timeout()), this,
  13. SLOT(update()));
Add Comment
Please, Sign In to add comment