Guest User

Untitled

a guest
Apr 19th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. private void updatePixmap(String lbl) {
  2. QApplication.invokeLater(new Runnable() {
  3. public void run() {
  4. synchronized (thread) {
  5. layout().addWidget(new QLabel(lbl));
  6. update();
  7. }
  8. }
  9. });
  10. }
Add Comment
Please, Sign In to add comment