mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-02 15:13:50 +01:00
List of commands that were executed in the `src directory`: * sed -i 's/Audacity: A Digital Audio Editor/Tenacity/g' *.h * sed -i 's/Audacity: A Digital Audio Editor/Tenacity/g' *.cpp Signed-off-by: Panagiotis Vasilopoulos <hello@alwayslivid.com>
29 lines
688 B
C++
29 lines
688 B
C++
/**********************************************************************
|
|
|
|
Tenacity
|
|
|
|
HelpText.h
|
|
|
|
James Crook
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_HELP_TEXT__
|
|
#define __AUDACITY_HELP_TEXT__
|
|
|
|
class TranslatableString;
|
|
class wxString;
|
|
#include "Identifier.h"
|
|
|
|
struct URLStringTag;
|
|
//! Distinct type for URLs
|
|
using URLString = TaggedIdentifier< URLStringTag >;
|
|
|
|
AUDACITY_DLL_API wxString HelpText( const wxString & Key );
|
|
AUDACITY_DLL_API TranslatableString TitleText( const wxString & Key );
|
|
|
|
extern AUDACITY_DLL_API const wxString VerCheckArgs();
|
|
extern AUDACITY_DLL_API wxString FormatHtmlText( const wxString & Text );
|
|
|
|
#endif
|