Removed @true typo from code

This commit is contained in:
JulianSmart 2016-07-06 13:34:29 +01:00
parent 9ae41a0f00
commit ab1ffb0c7c

View File

@ -389,7 +389,7 @@ public:
@code @code
wxAutomationObject excelObject; wxAutomationObject excelObject;
if (excelObject.GetInstance("Excel.Application")) if (excelObject.GetInstance("Excel.Application"))
excelObject.PutProperty("ActiveCell.Font.Bold", @true); excelObject.PutProperty("ActiveCell.Font.Bold", true);
@endcode @endcode
Note that this class obviously works under Windows only. Note that this class obviously works under Windows only.