mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-04 17:49:45 +02:00
travis
This commit is contained in:
parent
98f739a076
commit
70bd46b8ad
@ -42,6 +42,7 @@ out.
|
||||
|
||||
*//*******************************************************************/
|
||||
|
||||
#include "Audacity.h"
|
||||
#include "BlockFile.h"
|
||||
|
||||
#include <float.h>
|
||||
|
@ -21,6 +21,7 @@
|
||||
|
||||
**********************************************************************/
|
||||
|
||||
#include "Audacity.h"
|
||||
#include "Dependencies.h"
|
||||
|
||||
#include <wx/button.h>
|
||||
|
@ -24,6 +24,7 @@ channel. This collection of functions fills that gap.
|
||||
|
||||
#include <wx/image.h>
|
||||
|
||||
#include "Audacity.h"
|
||||
#include "ImageManipulation.h"
|
||||
|
||||
/// This looks at the first pixel in the image, and shifts
|
||||
|
@ -8,12 +8,14 @@
|
||||
|
||||
**********************************************************************/
|
||||
|
||||
#include "../Audacity.h"
|
||||
#include "LegacyAliasBlockFile.h"
|
||||
|
||||
#include <wx/utils.h>
|
||||
#include <wx/wxchar.h>
|
||||
|
||||
#include <sndfile.h>
|
||||
|
||||
#include "LegacyAliasBlockFile.h"
|
||||
#include "LegacyBlockFile.h"
|
||||
#include "../FileFormats.h"
|
||||
#include "../Internat.h"
|
||||
|
@ -18,6 +18,9 @@
|
||||
*//******************************************************************/
|
||||
|
||||
|
||||
#include "../Audacity.h"
|
||||
#include "LegacyBlockFile.h"
|
||||
|
||||
#include <float.h>
|
||||
#include <math.h>
|
||||
|
||||
@ -27,7 +30,6 @@
|
||||
#include <wx/utils.h>
|
||||
#include <wx/log.h>
|
||||
|
||||
#include "LegacyBlockFile.h"
|
||||
#include "../MemoryX.h"
|
||||
#include "../FileFormats.h"
|
||||
#include "../Internat.h"
|
||||
|
@ -16,9 +16,11 @@ The summary is eventually computed and written to a file in a background thread.
|
||||
|
||||
*//*******************************************************************/
|
||||
|
||||
#include <float.h>
|
||||
#include "../Audacity.h"
|
||||
#include "ODDecodeBlockFile.h"
|
||||
|
||||
#include <float.h>
|
||||
|
||||
#include <wx/utils.h>
|
||||
#include <wx/wxchar.h>
|
||||
#include <wx/log.h>
|
||||
|
@ -16,9 +16,11 @@ The summary is eventually computed and written to a file in a background thread.
|
||||
|
||||
*//*******************************************************************/
|
||||
|
||||
#include <float.h>
|
||||
#include "../Audacity.h"
|
||||
#include "ODPCMAliasBlockFile.h"
|
||||
|
||||
#include <float.h>
|
||||
|
||||
#include <wx/file.h>
|
||||
#include <wx/utils.h>
|
||||
#include <wx/wxchar.h>
|
||||
|
@ -8,6 +8,9 @@
|
||||
|
||||
**********************************************************************/
|
||||
|
||||
#include "../Audacity.h"
|
||||
#include "PCMAliasBlockFile.h"
|
||||
|
||||
#include <wx/file.h>
|
||||
#include <wx/utils.h>
|
||||
#include <wx/wxchar.h>
|
||||
@ -15,7 +18,6 @@
|
||||
|
||||
#include <sndfile.h>
|
||||
|
||||
#include "PCMAliasBlockFile.h"
|
||||
#include "../FileFormats.h"
|
||||
#include "../Internat.h"
|
||||
#include "../MemoryX.h"
|
||||
|
@ -8,6 +8,7 @@
|
||||
|
||||
**********************************************************************/
|
||||
|
||||
#include "../Audacity.h"
|
||||
#include "SilentBlockFile.h"
|
||||
#include "../FileFormats.h"
|
||||
|
||||
|
@ -21,8 +21,9 @@ system by constructing BatchCommandEval objects.
|
||||
|
||||
*//*******************************************************************/
|
||||
|
||||
#include "CommandDirectory.h"
|
||||
#include "../Audacity.h"
|
||||
#include "CommandBuilder.h"
|
||||
#include "CommandDirectory.h"
|
||||
#include "../Shuttle.h"
|
||||
#include "BatchEvalCommand.h"
|
||||
#include "Command.h"
|
||||
|
@ -16,6 +16,9 @@
|
||||
#ifndef __COMMANDBUILDER__
|
||||
#define __COMMANDBUILDER__
|
||||
|
||||
#include "../MemoryX.h"
|
||||
#include <wx/string.h>
|
||||
|
||||
class Command;
|
||||
using CommandHolder = std::shared_ptr<Command>;
|
||||
class wxString;
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
*//*******************************************************************/
|
||||
|
||||
#include "../Audacity.h"
|
||||
#include "CommandDirectory.h"
|
||||
#include "CommandMisc.h"
|
||||
|
||||
|
@ -13,8 +13,9 @@
|
||||
|
||||
*//*******************************************************************/
|
||||
|
||||
#include "CommandMisc.h"
|
||||
#include "../Audacity.h"
|
||||
#include "CommandSignature.h"
|
||||
#include "CommandMisc.h"
|
||||
#include "Validators.h"
|
||||
|
||||
CommandSignature::~CommandSignature()
|
||||
|
@ -17,8 +17,9 @@ Also acts as a factory.
|
||||
|
||||
*//*******************************************************************/
|
||||
|
||||
#include "CommandMisc.h"
|
||||
#include "../Audacity.h"
|
||||
#include "CommandType.h"
|
||||
#include "CommandMisc.h"
|
||||
#include "CommandSignature.h"
|
||||
#include <wx/string.h>
|
||||
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
*//*******************************************************************/
|
||||
|
||||
#include "../Audacity.h"
|
||||
#include "HelpCommand.h"
|
||||
#include "CommandDirectory.h"
|
||||
#include <wx/string.h>
|
||||
|
@ -16,6 +16,7 @@
|
||||
|
||||
*//*******************************************************************/
|
||||
|
||||
#include "../Audacity.h"
|
||||
#include "SelectCommand.h"
|
||||
#include <wx/string.h>
|
||||
#include "../Project.h"
|
||||
|
@ -7,6 +7,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "../Audacity.h"
|
||||
#include "ODDecodeFlacTask.h"
|
||||
|
||||
#include "../Prefs.h"
|
||||
|
@ -16,6 +16,7 @@ updating the ODPCMAliasBlockFile and the GUI of the newly available data.
|
||||
|
||||
*//*******************************************************************/
|
||||
|
||||
#include "../Audacity.h"
|
||||
#include "ODDecodeTask.h"
|
||||
#include "../blockfile/ODDecodeBlockFile.h"
|
||||
#include "../Sequence.h"
|
||||
|
@ -14,6 +14,7 @@ ODTask requests and internals.
|
||||
|
||||
*//*******************************************************************/
|
||||
|
||||
#include "../Audacity.h"
|
||||
#include "ODManager.h"
|
||||
#include "ODTask.h"
|
||||
#include "ODTaskThread.h"
|
||||
|
@ -14,12 +14,14 @@
|
||||
*//*******************************************************************/
|
||||
|
||||
|
||||
#include "../Audacity.h"
|
||||
#include "ExtImportPrefs.h"
|
||||
|
||||
#include <wx/defs.h>
|
||||
#include <wx/listctrl.h>
|
||||
#include <wx/msgdlg.h>
|
||||
#include <wx/dnd.h>
|
||||
|
||||
#include "ExtImportPrefs.h"
|
||||
#include "../Audacity.h"
|
||||
#include "../AudacityApp.h"
|
||||
#include "../Prefs.h"
|
||||
|
@ -22,6 +22,7 @@
|
||||
#include "../import/ImportPlugin.h"
|
||||
|
||||
class wxButton;
|
||||
class wxListCtrl;
|
||||
class wxListEvent;
|
||||
class ExtImportPrefs;
|
||||
class ShuttleGui;
|
||||
|
@ -22,6 +22,9 @@
|
||||
// For compilers that support precompilation, includes "wx.h".
|
||||
#include <wx/wxprec.h>
|
||||
|
||||
#include "../Audacity.h"
|
||||
#include "valnum.h"
|
||||
|
||||
#ifdef __BORLANDC__
|
||||
#pragma hdrstop
|
||||
#endif
|
||||
@ -36,7 +39,6 @@
|
||||
#include <wx/clipbrd.h>
|
||||
#include <wx/dataobj.h>
|
||||
|
||||
#include "valnum.h"
|
||||
#include "numformatter.h"
|
||||
|
||||
// ============================================================================
|
||||
|
Loading…
x
Reference in New Issue
Block a user