From 79422f929e435c9fd154bedf4ad11201be549341 Mon Sep 17 00:00:00 2001 From: unknown Date: Sat, 20 Feb 2016 20:00:22 +0100 Subject: [PATCH] Update comments (ElectricPinType -> ELECTRICAL_PINTYPE) --- eeschema/lib_pin.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eeschema/lib_pin.h b/eeschema/lib_pin.h index 44efea0b15..51f5f58783 100644 --- a/eeschema/lib_pin.h +++ b/eeschema/lib_pin.h @@ -277,14 +277,14 @@ public: /** * Get the electrical type of the pin. * - * @return The electrical type of the pin (see enun ElectricPinType for values). + * @return The electrical type of the pin (see enun ELECTRICAL_PINTYPE for values). */ ELECTRICAL_PINTYPE GetType() const { return m_type; } /** * return a string giving the electrical type of a pin. * Can be used when a known, not translated name is needed (for instance in net lists) - * @param aType is the electrical type (see enum ElectricPinType ) + * @param aType is the electrical type (see enum ELECTRICAL_PINTYPE ) * @return The electrical name for a pin type (see enun MsgPinElectricType for names). */ static const wxString GetCanonicalElectricalTypeName( unsigned aType ); @@ -301,7 +301,7 @@ public: /** * return a translated string for messages giving the electrical type of a pin. - * @param aType is the electrical type (see enum ElectricPinType ) + * @param aType is the electrical type (see enum ELECTRICAL_PINTYPE ) * @return The electrical name of the pin (see enun MsgPinElectricType for names). */ static const wxString GetElectricalTypeName( unsigned aType );