43
« Last post by Johnco3 on September 20, 2023, 03:38:17 pm »
Javadoc Preview broken.
The following example ignores the paragrapgh breaks. (note the terminating </p> is not required in Javadoc (it doesn't fix it either). This currently works in SlickEdit Pro 2022.
Note, another difference is the blank line separator before the Parameters: section (I think I prefer this in the new beta, SlickEdit 2022 leaves no space before the parameters section which looks a little ugly in my opinion).
/**
* configureDevice slot.
*
* <p>This slot runs in the worker thread context.
*
* <p>If <code>rDeviceConfigPath</code> is in XML format (*.xml
* or *.adcx), it is parsed for the the input and output
* VL definitions and converted to ASCII-HEX format where the
* file is used to initialize the AIT hardware.
*
* <p>If <code>rDeviceConfigPath</code> is in ASCII-HEX format
* (*.hex or *.adc), the file is converted to XML and parsed for
* input and output VL definitions. The ASCII-HEX file is then
* used to initialize the AIT hardware.
*
* <p>If the <code>rDeviceConfigPath</code> is located in the
* resource area of the application, we must firstly copy the
* file to the temp folder so it can read by the converter
* executable. The code uses the <code>QTemporaryFile</code>
* for this purpose.
*
* @param rDeviceConfigPath [in] XML or HEX Simulyzer device
* configuration path (filesystem or
* resource file).
*/
void handleConfigureDevice(const QFileInfo& rDeviceConfigPath);
I attach a copy of the latest version of the preview (as of Beta 3, it was also broken in Beta 2) and the previous working version