mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 03:33:48 +00:00
shadowvar cleanup
This commit is contained in:
parent
248c5e9e69
commit
5282b37d9f
3 changed files with 6 additions and 8 deletions
|
|
@ -248,13 +248,13 @@ static void dumpFunction( Stream &stream,
|
|||
const char* brief = dStrstr( doc, "@brief" );
|
||||
if( !brief )
|
||||
{
|
||||
String brief = entry->getBriefDescription( &doc );
|
||||
String briefStr = entry->getBriefDescription( &doc );
|
||||
|
||||
brief.trim();
|
||||
if( !brief.isEmpty() )
|
||||
briefStr.trim();
|
||||
if( !briefStr.isEmpty() )
|
||||
{
|
||||
stream.writeText( "@brief " );
|
||||
stream.writeText( brief );
|
||||
stream.writeText(briefStr);
|
||||
stream.writeText( "\r\n\r\n" );
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue