I need to make something that converts from Celcious to:
Kelvin, Fahrenheit, Rankine, Réaumur, Newton, Rømer and Delisle.

Right now, I have the following:

Qt Code:
  1. void mainForm::convertClicked()
  2. {
  3. double celsius_input, result = 0;
  4.  
  5. celsius_input = celsiusLineEdit->text().toDouble();
  6.  
  7. result = (celsius_input * (9.0/5.0)) + 32.0;
  8.  
  9. resultLineEdit->setText(QString::number(result, 'f', 1));
  10.  
  11. celsiusLineEdit->clear();
  12. }
To copy to clipboard, switch view to plain text mode 

The problem is, all results have to come in that same resultLineEdit.
How do I do that?

Thanks.