diff --git a/include/plugins/kicad_plugin.h b/include/plugins/kicad_plugin.h index 7475ff7870..0e8f7b8907 100644 --- a/include/plugins/kicad_plugin.h +++ b/include/plugins/kicad_plugin.h @@ -96,9 +96,9 @@ KICAD_PLUGIN_EXPORT const char* GetKicadPluginName( void ); /** - * Function GetVersion + * Function GetPluginVersion * retrieves the version of the instantiated plugin for informational - * purposes. Do not confuse this with GetAPIVersion which is used to + * purposes. Do not confuse this with GetClassVersion which is used to * determine API compatibility. * * @param Major will hold the Plugin Major version @@ -106,7 +106,7 @@ KICAD_PLUGIN_EXPORT const char* GetKicadPluginName( void ); * @param Patch will hold the Plugin Patch level * @param Revision will hold the Plugin Revision */ -KICAD_PLUGIN_EXPORT void GetVersion( unsigned char* Major, +KICAD_PLUGIN_EXPORT void GetPluginVersion( unsigned char* Major, unsigned char* Minor, unsigned char* Patch, unsigned char* Revision ); #endif // KICAD_PLUGIN_H diff --git a/plugins/3d/demo/s3d_plugin_demo1.cpp b/plugins/3d/demo/s3d_plugin_demo1.cpp index f3d9275502..e7d22a1a44 100644 --- a/plugins/3d/demo/s3d_plugin_demo1.cpp +++ b/plugins/3d/demo/s3d_plugin_demo1.cpp @@ -43,7 +43,7 @@ const char* GetKicadPluginName( void ) } -void GetVersion( unsigned char* Major, unsigned char* Minor, +void GetPluginVersion( unsigned char* Major, unsigned char* Minor, unsigned char* Patch, unsigned char* Revision ) { if( Major ) diff --git a/plugins/3d/demo/s3d_plugin_demo2.cpp b/plugins/3d/demo/s3d_plugin_demo2.cpp index 665db2bb0e..b5e80edf19 100644 --- a/plugins/3d/demo/s3d_plugin_demo2.cpp +++ b/plugins/3d/demo/s3d_plugin_demo2.cpp @@ -38,7 +38,7 @@ const char* GetKicadPluginName( void ) } -void GetVersion( unsigned char* Major, unsigned char* Minor, +void GetPluginVersion( unsigned char* Major, unsigned char* Minor, unsigned char* Patch, unsigned char* Revision ) { if( Major ) diff --git a/plugins/3d/idf/s3d_plugin_idf.cpp b/plugins/3d/idf/s3d_plugin_idf.cpp index 50e191c976..969a7580db 100644 --- a/plugins/3d/idf/s3d_plugin_idf.cpp +++ b/plugins/3d/idf/s3d_plugin_idf.cpp @@ -43,7 +43,7 @@ const char* GetKicadPluginName( void ) } -void GetVersion( unsigned char* Major, +void GetPluginVersion( unsigned char* Major, unsigned char* Minor, unsigned char* Patch, unsigned char* Revision ) { if( Major )