mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-24 00:18:07 +02:00
Turn on EXPERIMENTAL_LINKING apropos bug 177.
Also, some clean-up and moving related items closer together.
This commit is contained in:
parent
8c51e56248
commit
908b0b2d35
@ -7,9 +7,9 @@
|
||||
Dominic Mazzoni
|
||||
James Crook
|
||||
|
||||
Used for includes and #defines for experimental features.
|
||||
Used for #includes and #defines for experimental features.
|
||||
|
||||
When the features become mainstream the include files will
|
||||
When the features become mainstream the #include files will
|
||||
move out of here and into the files which need them. The
|
||||
#defines will then be retired.
|
||||
|
||||
@ -22,23 +22,22 @@
|
||||
Add #defines in here for the new features, and make your code
|
||||
conditional on those #defines.
|
||||
|
||||
All the #defines are positive, i.e., when defined,
|
||||
they enable the feature.
|
||||
|
||||
**********************************************************************/
|
||||
|
||||
#ifndef __EXPERIMENTAL__
|
||||
#define __EXPERIMENTAL__
|
||||
|
||||
//uncomment the next line to enable the feature to link audio tracks to a label track
|
||||
//#define EXPERIMENTAL_LINKING
|
||||
// feature to link audio tracks to a label track
|
||||
#define EXPERIMENTAL_LINKING
|
||||
|
||||
//Uncomment the next #define to enable experimental features.
|
||||
#define EXPERIMENTAL_FEATURES
|
||||
|
||||
// Comment out the next two lines if you want to disable 'experimental theming'
|
||||
// experimental theming
|
||||
// Work in progress, June-2008.
|
||||
//#define EXPERIMENTAL_THEMING
|
||||
#if IS_BETA
|
||||
//August 2009 - Theming not locked down enough enough for a stable release.
|
||||
// we're doing betas which are leading up to an RC.
|
||||
//#define EXPERIMENTAL_THEME_PREFS
|
||||
#endif
|
||||
|
||||
@ -102,6 +101,8 @@
|
||||
//#define EXPERIMENTAL_SCOREALIGN
|
||||
#endif
|
||||
|
||||
// experimental features
|
||||
#define EXPERIMENTAL_FEATURES
|
||||
#ifdef EXPERIMENTAL_FEATURES
|
||||
// The first experimental feature is a notebook that adds
|
||||
// a tabbed divider to the project.
|
||||
|
Loading…
x
Reference in New Issue
Block a user