add configurable colors to stereo panner, plus keybindings for zero width (0), 1...
[ardour.git] / gtk2_ardour / editor_export_audio.cc
index 342ccb80e0204543a8ef659e15e8ac413d5d52d8..59109c508eac545a8575614386b45c418a982b33 100644 (file)
@@ -19,7 +19,6 @@
 
 /* Note: public Editor methods are documented in public_editor.h */
 
-#define __STDC_FORMAT_MACROS 1
 #include <inttypes.h>
 #include <unistd.h>
 #include <climits>
@@ -210,9 +209,9 @@ Editor::write_region (string path, boost::shared_ptr<AudioRegion> region)
 
                        try {
                                fs = boost::dynamic_pointer_cast<AudioFileSource> (
-                                               SourceFactory::createWritable (DataType::AUDIO, *_session,
-                                                                               path, string(), true,
-                                                                               false, _session->frame_rate()));
+                                       SourceFactory::createWritable (DataType::AUDIO, *_session,
+                                                                      path, string(), true,
+                                                                      false, _session->frame_rate()));
                        }
 
                        catch (failed_constructor& err) {
@@ -349,9 +348,9 @@ Editor::write_audio_range (AudioPlaylist& playlist, const ChanCount& count, list
 
                try {
                        fs = boost::dynamic_pointer_cast<AudioFileSource> (
-                                       SourceFactory::createWritable (DataType::AUDIO, *_session,
-                                                                       path, string(), true,
-                                                                       false, _session->frame_rate()));
+                               SourceFactory::createWritable (DataType::AUDIO, *_session,
+                                                              path, string(), true,
+                                                              false, _session->frame_rate()));
                }
 
                catch (failed_constructor& err) {