1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-15 17:11:23 +01:00

Use extern in function definitions.

This commit is contained in:
James Crook
2016-09-11 15:45:25 +01:00
parent 2fe24c9f4d
commit afb3687a05

View File

@@ -173,8 +173,8 @@ void QuitAudacity();
#include <wx/defs.h>
#include <wx/string.h>
const wxString& GetCustomTranslation(const wxString& str1 );
const wxString& GetCustomSubstitution(const wxString& str1 );
extern const wxString& GetCustomTranslation(const wxString& str1 );
extern const wxString& GetCustomSubstitution(const wxString& str1 );
// Marks strings for extraction only...must use wxGetTranslation() to translate.
#define XO(s) GetCustomSubstitution(s)