Hello,

This I'm sure is an immensely stupid question, however it's so simple that I can't find the answer to it by searching anywhere. I want to take the information from a PlainTextEdit, put it into a variable and use it elsewhere (for example to populate another box later on). I have the following, where LatEdit and EastingText are both PlainTextEdit's, but get the error 'LatEdit was not declared in this scope'. If I change it to 'num1 = "TEST";' then it will work, so I'm assuming it's me reading in the text incorrectly from the LatEdit control.
Qt Code:
  1. void MainWindow::on_pushButton_clicked()
  2. {
  3. QString num1;
  4. num1 = LatEdit->Plain;
  5. ui->EastingText->setPlainText(num1);
  6. }
To copy to clipboard, switch view to plain text mode 

Can anyone help me?

Thanks