Quote Originally Posted by Lykurg View Post
it has to be
Qt Code:
  1. connect(ui->horizontalSlider, SIGNAL(valueChanged(int)),this, SLOT(counterChanged(int)));
  2. connect(ui->ResetButton,SIGNAL(clicked()), this, SLOT(SetSliderValue()));
  3. connect(ui->PlayButton,SIGNAL(clicked()), this, SLOT(animate()));
To copy to clipboard, switch view to plain text mode 
If i replace with "this", how do they know which object the slots belong to?