mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-20 06:10:06 +02:00
// Indentation settings for Vim and Emacs etc. lines from all files, as Campbell's patch (except for other changes to Languages.cpp)
37 lines
642 B
C++
37 lines
642 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
WarningsPrefs.h
|
|
|
|
Brian Gunlogson
|
|
Joshua Haberman
|
|
James Crook
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_WARNINGS_PREFS__
|
|
#define __AUDACITY_WARNINGS_PREFS__
|
|
|
|
#include <wx/defs.h>
|
|
|
|
#include <wx/window.h>
|
|
|
|
#include "../ShuttleGui.h"
|
|
|
|
#include "PrefsPanel.h"
|
|
|
|
class WarningsPrefs:public PrefsPanel
|
|
{
|
|
public:
|
|
WarningsPrefs(wxWindow * parent);
|
|
~WarningsPrefs();
|
|
virtual bool Apply();
|
|
|
|
private:
|
|
void Populate();
|
|
void PopulateOrExchange(ShuttleGui & S);
|
|
};
|
|
|
|
#endif
|