1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-06 15:19:29 +02:00

Added <wx/filename.h> to #includes.

This commit is contained in:
james.k.crook@gmail.com 2014-06-13 17:02:37 +00:00
parent 676cd8b1d4
commit 4c0d515dba
3 changed files with 3 additions and 1 deletions

View File

@ -26,7 +26,7 @@
// We only do alpha builds and release versions.
// Most of the time we're in development, so IS_ALPHA should be defined
// to 1.
#define IS_ALPHA 1
#define IS_ALPHA 0
// Increment as appropriate every time we release a new version.
#define AUDACITY_VERSION 2

View File

@ -99,6 +99,7 @@ class AUDACITY_DLL_API Mixer {
/// Restart processing at beginning of buffer next time
/// Process() is called.
void Restart();
void Restart( double NewStart ){ mT0 = NewStart; Restart();}
/// Reposition processing to absolute time next time
/// Process() is called.

View File

@ -20,6 +20,7 @@
#include "../Audacity.h"
#include <wx/defs.h>
#include <wx/filename.h>
#include "../ShuttleGui.h"