Menu

Function argument list without line-break

fi2
2017-01-19
2017-01-19
  • fi2

    fi2 - 2017-01-19

    I added Doxygen comments to my C++ source, and use Doxywizard to generate HTML output. It works fine, but I don't like that each argument is broken to a new line when showing the function header.

    So instead of

    void WeightProcessor::setOffset (   int     i, long     offsetVal ) 
    

    on the HTML page it looks like:

    void WeightProcessor::setOffset (   int     i,
    long    offsetVal 
    )
    

    Could someone help me with how could I set it to single line? Any help would be highly appreciated.

     
  • Ed Jubenville

    Ed Jubenville - 2017-05-18

    This can be done by adding a style sheet.

    First, create a file named my_styles.css, and add this one line:
    .memname tr { float: left; }

    In the config file, add:
    HTML_EXTRA_STYLESHEET = my_styles.css

     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.