mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-06 14:52:34 +02:00
// Indentation settings for Vim and Emacs etc. lines from all files, as Campbell's patch (except for other changes to Languages.cpp)
23 lines
550 B
C
23 lines
550 B
C
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
LangChoice.h
|
|
|
|
Dominic Mazzoni
|
|
|
|
Pop up a language asking the user to choose a (natural)
|
|
language for the user interface. Generally only popped
|
|
up once, the first time the program is run.
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_LANG_CHOICE__
|
|
#define __AUDACITY_LANG_CHOICE__
|
|
|
|
#include <wx/string.h>
|
|
|
|
wxString ChooseLanguage(wxWindow *parent);
|
|
|
|
#endif // __AUDACITY_LANG_CHOICE__
|