Fix a few doxygen warnings

This commit is contained in:
jean-pierre charras 2017-06-21 09:32:19 +02:00
parent 70226ecdeb
commit e5137f4eb4
14 changed files with 31 additions and 35 deletions

View File

@ -281,8 +281,8 @@ bool BOM_TABLE_GROUP::SetFieldValue( unsigned int aFieldId, const wxString aValu
* - Tests each field in turn; all fields must match * - Tests each field in turn; all fields must match
* - Some fields require special checking * - Some fields require special checking
* *
* @aFieldId - The ID of the field * @param aField - The field to test
* @aCmp - The component being tested * @param aComponent - The component being tested
*/ */
bool BOM_TABLE_GROUP::TestField( BOM_COLUMN* aField, BOM_TABLE_COMPONENT* aComponent ) const bool BOM_TABLE_GROUP::TestField( BOM_COLUMN* aField, BOM_TABLE_COMPONENT* aComponent ) const
{ {
@ -413,7 +413,7 @@ bool BOM_TABLE_GROUP::HasValueChanged( BOM_COLUMN* aField ) const
* Return a list of (ordered) references * Return a list of (ordered) references
* for all the components in this group * for all the components in this group
* *
* @aSort - Sort the references * @param aSort - Sort the references
*/ */
wxArrayString BOM_TABLE_GROUP::GetReferences( bool aSort ) const wxArrayString BOM_TABLE_GROUP::GetReferences( bool aSort ) const
{ {

View File

@ -173,7 +173,7 @@ public:
* phase. * phase.
* *
* @param aNodeName the parent node the components will appear under * @param aNodeName the parent node the components will appear under
* @param aAliasNameList list of aliases * @param aAliasList list of aliases
* @param aOptionalLib library to look up names in (null = global) * @param aOptionalLib library to look up names in (null = global)
*/ */
void AddAliasList( void AddAliasList(
@ -323,7 +323,7 @@ private:
* Compute the width required for the given column of a node and its * Compute the width required for the given column of a node and its
* children. * children.
* *
* @param aNode - root node of the tree * @param aTree - root node of the tree
* @param aCol - column number * @param aCol - column number
* @param aHeading - heading text, to set the minimum width * @param aHeading - heading text, to set the minimum width
*/ */

View File

@ -56,7 +56,7 @@ public:
/** /**
* Function AppendToList * Function AppendToList
* @param aItem The SCH_MARKER* to add to the current list which will be * @param aMarker is the SCH_MARKER* to add to the current list which will be
* later displayed in the wxHtmlWindow * later displayed in the wxHtmlWindow
*/ */
void AppendToList( SCH_MARKER* aMarker ) void AppendToList( SCH_MARKER* aMarker )

View File

@ -141,6 +141,12 @@ static bool insert_library( PROJECT *aProject, PART_LIB *aLibrary, size_t aIndex
} }
// Helper sort function, used in get_components, to sort a component list by lib_id
static bool sort_by_libid( const SCH_COMPONENT* ref, SCH_COMPONENT* cmp )
{
return ref->GetLibId() < cmp->GetLibId();
}
/** /**
* Function get_components * Function get_components
* Fills a vector with all of the project's components, to ease iterating over them. * Fills a vector with all of the project's components, to ease iterating over them.
@ -150,12 +156,6 @@ static bool insert_library( PROJECT *aProject, PART_LIB *aLibrary, size_t aIndex
* *
* @param aComponents - a vector that will take the components * @param aComponents - a vector that will take the components
*/ */
// Helper sort function, used in get_components, to sort a component list by lib_id
static bool sort_by_libid( const SCH_COMPONENT* ref, SCH_COMPONENT* cmp )
{
return ref->GetLibId() < cmp->GetLibId();
}
static void get_components( std::vector<SCH_COMPONENT*>& aComponents ) static void get_components( std::vector<SCH_COMPONENT*>& aComponents )
{ {
SCH_SCREENS screens; SCH_SCREENS screens;

View File

@ -299,8 +299,11 @@ public:
SCH_FIELD* GetField( int aFieldNdx ) const; SCH_FIELD* GetField( int aFieldNdx ) const;
/** /**
* Returns text associated with a given field (if such a field exists) * Search for a field named aFieldName and returns text associated with this field
* @aFieldName is the name of the field * (if such a field exists)
* @param aFieldName is the name of the field
* @param aIncludeDefaultFields = true (default) to include default fields in search
* (default fields are the mandatory fields ref, value, fooprint and doc)
*/ */
wxString GetFieldText( wxString aFieldName, bool aIncludeDefaultFields = true ) const; wxString GetFieldText( wxString aFieldName, bool aIncludeDefaultFields = true ) const;

View File

@ -142,7 +142,7 @@ public:
* *
* @param aFileName is the name of a file to save to on disk. * @param aFileName is the name of a file to save to on disk.
* *
* @param aSchematic is the #SCH_SCREN document (data tree) to save or export to disk. * @param aSchematic is the #SCH_SCREEN document (data tree) to save or export to disk.
* *
* @param aKiway is the #KIWAY object used to access the component libraries loaded * @param aKiway is the #KIWAY object used to access the component libraries loaded
* by the project. * by the project.

View File

@ -206,7 +206,7 @@ public:
* *
* @throw IO_ERROR if there is a problem finding the footprint or the library, or deleting it. * @throw IO_ERROR if there is a problem finding the footprint or the library, or deleting it.
*/ */
void DeleteSymbol( const wxString& aNickname, const wxString& aSymboltName ); void DeleteSymbol( const wxString& aNickname, const wxString& aSymbolName );
/** /**
* Function DeleteAlias * Function DeleteAlias

View File

@ -71,7 +71,7 @@ public:
}; };
/** /**
* @param the client to pass the results onto * @param aClient is the client to pass the results onto
*/ */
POLYGON_GEOM_MANAGER( CLIENT& aClient ); POLYGON_GEOM_MANAGER( CLIENT& aClient );

View File

@ -57,8 +57,8 @@ public:
/** /**
* Set the polygon points * Set the polygon points
* *
* @param locked in points - the "fixed point" of the outline * @param aLockedInPts - the "fixed points" of the outline
* @param leader line points - the lines from the last fixed point to * @param aLeaderPts - the lines from the last fixed point to
* another point, eg the cursor. * another point, eg the cursor.
*/ */
void SetPoints( const std::vector<VECTOR2I>& aLockedInPts, void SetPoints( const std::vector<VECTOR2I>& aLockedInPts,

View File

@ -136,8 +136,8 @@ public:
* @param aItem: the item to update. * @param aItem: the item to update.
* @param aUpdateFlags: how much the object has changed. * @param aUpdateFlags: how much the object has changed.
*/ */
void Update( VIEW_ITEM* aItem );
void Update( VIEW_ITEM* aItem, int aUpdateFlags ); void Update( VIEW_ITEM* aItem, int aUpdateFlags );
void Update( VIEW_ITEM* aItem );
/** /**
* Function SetRequired() * Function SetRequired()

View File

@ -247,7 +247,7 @@ public:
/** /**
* Function EnableCursorWarping() * Function EnableCursorWarping()
* Enables or disables warping the cursor. * Enables or disables warping the cursor.
* @param aEnabled is true if the cursor is allowed to be warped. * @param aEnable is true if the cursor is allowed to be warped.
*/ */
void EnableCursorWarping( bool aEnable ) void EnableCursorWarping( bool aEnable )
{ {
@ -256,7 +256,7 @@ public:
/** /**
* Function IsCursorWarpingEnabled() * Function IsCursorWarpingEnabled()
* Returns the current setting for cursor warping. * @return the current setting for cursor warping.
*/ */
bool IsCursorWarpingEnabled() const bool IsCursorWarpingEnabled() const
{ {
@ -266,7 +266,7 @@ public:
/** /**
* Function EnableMousewheelPan() * Function EnableMousewheelPan()
* Enables or disables mousewheel panning. * Enables or disables mousewheel panning.
* @param aEnabled is true if mouse-wheel panning is enabled. * @param aEnable is true if mouse-wheel panning is enabled.
*/ */
virtual void EnableMousewheelPan( bool aEnable ) virtual void EnableMousewheelPan( bool aEnable )
{ {
@ -275,7 +275,7 @@ public:
/** /**
* Function IsMousewheelPanEnabled() * Function IsMousewheelPanEnabled()
* Returns the current setting for mousewheel panning * @return the current setting for mousewheel panning
*/ */
virtual bool IsMousewheelPanEnabled() const virtual bool IsMousewheelPanEnabled() const
{ {

View File

@ -93,7 +93,7 @@ public:
* Draws all the stored items in the group on the given layer. * Draws all the stored items in the group on the given layer.
* *
* @param aLayer is the layer which should be drawn. * @param aLayer is the layer which should be drawn.
* @param aGal is the GAL that should be used for drawing. * @param aView is the VIEW that should be used for drawing.
*/ */
virtual void ViewDraw( int aLayer, VIEW* aView ) const override; virtual void ViewDraw( int aLayer, VIEW* aView ) const override;

View File

@ -109,7 +109,7 @@ public:
* for quick hacks and debugging purposes. * for quick hacks and debugging purposes.
* *
* @param aLayer: current drawing layer * @param aLayer: current drawing layer
* @param aGal: pointer to the GAL device we are drawing on * @param aView: pointer to the VIEW device we are drawing on
*/ */
virtual void ViewDraw( int aLayer, VIEW* aView ) const virtual void ViewDraw( int aLayer, VIEW* aView ) const
{} {}

View File

@ -70,13 +70,6 @@ public:
*/ */
void SetGrabMouse( bool aEnabled ) override; void SetGrabMouse( bool aEnabled ) override;
/**
* Function SetAutoPan()
* Enables/disables autopanning (panning when mouse cursor reaches the panel border).
*
* @param aEnabled says whether the option should enabled or disabled.
*/
/// @copydoc VIEW_CONTROLS::GetMousePosition() /// @copydoc VIEW_CONTROLS::GetMousePosition()
VECTOR2D GetMousePosition( bool aWorldCoordinates = true ) const override; VECTOR2D GetMousePosition( bool aWorldCoordinates = true ) const override;