Hello, i have to create an XML file, i start with this new processing instruction

Qt Code:
  1. QDomNode xmlNode = XMLDomDocumentList.createProcessingInstruction ( "!DOCTYPE" , "RDPClientSettingsConfigFile" );
  2. XMLDomDocumentList.insertBefore ( xmlNode , XMLDomDocumentList.firstChild() );
To copy to clipboard, switch view to plain text mode 
the results is:
Qt Code:
  1. <?!DOCTYPE RDPClientSettingsConfigFile?>
To copy to clipboard, switch view to plain text mode 
is there a way to remove "?" in the processing instruction?
I'd like to have a results like this:
Qt Code:
  1. <!DOCTYPE RDPClientSettingsConfigFile>
To copy to clipboard, switch view to plain text mode