Commit 63b88455 authored by Wayne Stambaugh's avatar Wayne Stambaugh
Browse files

Doxygen warning fixes.

parent 87e5b6b8
Loading
Loading
Loading
Loading
+1822 −243

File changed.

Preview size limit exceeded, changes collapsed.

+0 −1
Original line number Original line Diff line number Diff line
@@ -84,7 +84,6 @@ public:
     * Function SetCvsFormOn
     * Function SetCvsFormOn
     * prepare parameters to create a BOM list in comma separated value (cvs)
     * prepare parameters to create a BOM list in comma separated value (cvs)
     * @param aSeparator = the character used as "csv" separator
     * @param aSeparator = the character used as "csv" separator
     * @param aFile = the file to write to (will be closed)
     */
     */
    void SetCvsFormOn( char aSeparator )
    void SetCvsFormOn( char aSeparator )
    {
    {
+3 −3
Original line number Original line Diff line number Diff line
@@ -24,7 +24,7 @@
 */
 */


/**
/**
 * @file netlist_control.cpp
 * @file eeschema/dialogs/dialog_netlist.cpp
 * @brief Dialog box for creating netlists.
 * @brief Dialog box for creating netlists.
 */
 */


@@ -530,8 +530,8 @@ void NETLIST_DIALOG::GenNetlist( wxCommandEvent& event )
 * returns the filename extension and the wildcard string for this curr
 * returns the filename extension and the wildcard string for this curr
 * or a void name if there is no default name
 * or a void name if there is no default name
 * @param aNetTypeId = the netlist type ( NET_TYPE_PCBNEW ... )
 * @param aNetTypeId = the netlist type ( NET_TYPE_PCBNEW ... )
 * @param aExt = a reference to a wxString to return the defaut  file ext.
 * @param aExt = a reference to a wxString to return the default  file ext.
 * @param aWildCard =  reference to a wxString to return the defaut wildcard.
 * @param aWildCard =  reference to a wxString to return the default wildcard.
 * @return true for known netlist type, false for custom formats
 * @return true for known netlist type, false for custom formats
 */
 */
bool NETLIST_DIALOG::ReturnFilenamePrms( NETLIST_TYPE_ID aNetTypeId,
bool NETLIST_DIALOG::ReturnFilenamePrms( NETLIST_TYPE_ID aNetTypeId,
+4 −4
Original line number Original line Diff line number Diff line
/**
/**
 * @file dialog_netlist.h
 * @file eeschema/dialogs/dialog_netlist.h
 */
 */


/*
/*
@@ -59,7 +59,7 @@ enum panel_netlist_index {
                         * others use PANELCUSTOMBASE+1, PANELCUSTOMBASE+2.. */
                         * others use PANELCUSTOMBASE+1, PANELCUSTOMBASE+2.. */
};
};


// Values returned when the netlist dialog is demiss
// Values returned when the netlist dialog is dismissed
#define NET_PLUGIN_CHANGE 1
#define NET_PLUGIN_CHANGE 1
// other values in use are wxID_OK and wxID_CANCEL
// other values in use are wxID_OK and wxID_CANCEL


@@ -172,8 +172,8 @@ private:
     * returns the filename extension and the wildcard string for this curr
     * returns the filename extension and the wildcard string for this curr
     * or a void name if there is no default name
     * or a void name if there is no default name
     * @param aNetTypeId = the netlist type ( NET_TYPE_PCBNEW ... )
     * @param aNetTypeId = the netlist type ( NET_TYPE_PCBNEW ... )
     * @param aExt = a reference to a wxString to return the defaut  file ext.
     * @param aExt = a reference to a wxString to return the default  file ext.
     * @param aWildCard =  reference to a wxString to return the defaut wildcard.
     * @param aWildCard =  reference to a wxString to return the default wildcard.
     * @return true for known netlist type, false for custom formats
     * @return true for known netlist type, false for custom formats
     */
     */
    bool ReturnFilenamePrms( NETLIST_TYPE_ID aNetTypeId,
    bool ReturnFilenamePrms( NETLIST_TYPE_ID aNetTypeId,
+1 −1
Original line number Original line Diff line number Diff line
/** @file dialog_plot_schematic_PDF.cpp
/** @file dialog_plot_schematic.cpp
 */
 */


/*
/*
Loading