i need to display the below text in QLabel
"The text will be plain text. Setting the text clears any previous content."
Qt Code:
  1. label->setText(" The text will be plain text. Setting the text clears any previous content.");
  2. label4->setWordWrap(true);
To copy to clipboard, switch view to plain text mode 
i getting the output in label
Qt Code:
  1. The text will be plain text. Setting the text clears
  2. any previous content.
To copy to clipboard, switch view to plain text mode 
but i need the output
Qt Code:
  1. The text will be plain text.
  2. Setting the text clears any previous content.
To copy to clipboard, switch view to plain text mode 
i need this output in twoline.please guide me to get proper result