summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editing_syms.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-01-13 14:57:02 +0100
committerRobin Gareus <robin@gareus.org>2016-01-14 19:10:27 +0100
commitf2b7d9af927cbc381433a4d335a570800094f408 (patch)
treed5019ba558a8d569ded3a9c3f60844eca703a5d2 /gtk2_ardour/editing_syms.h
parentaacf086246e15bd8bb96e05dd5c4e9c5fe6d0c9a (diff)
NO-OP: enums implicitly start at zero
this allows this file to be included to look up enums (bindings)
Diffstat (limited to 'gtk2_ardour/editing_syms.h')
-rw-r--r--gtk2_ardour/editing_syms.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/gtk2_ardour/editing_syms.h b/gtk2_ardour/editing_syms.h
index a958776305..715202bfc9 100644
--- a/gtk2_ardour/editing_syms.h
+++ b/gtk2_ardour/editing_syms.h
@@ -88,22 +88,22 @@ DISPLAYCONTROL(ShowWaveforms)
DISPLAYCONTROL(ShowWaveformsRecording)
// if this is changed, remember to update the string table in sfdb_ui.cc
-IMPORTMODE(ImportAsRegion=0)
-IMPORTMODE(ImportToTrack=1)
-IMPORTMODE(ImportAsTrack=2)
-IMPORTMODE(ImportAsTapeTrack=3)
+IMPORTMODE(ImportAsRegion)
+IMPORTMODE(ImportToTrack)
+IMPORTMODE(ImportAsTrack)
+IMPORTMODE(ImportAsTapeTrack)
// if this is changed, remember to update the string table in sfdb_ui.cc
-IMPORTPOSITION(ImportAtTimestamp=0)
-IMPORTPOSITION(ImportAtEditPoint=1)
-IMPORTPOSITION(ImportAtPlayhead=2)
-IMPORTPOSITION(ImportAtStart=3)
+IMPORTPOSITION(ImportAtTimestamp)
+IMPORTPOSITION(ImportAtEditPoint)
+IMPORTPOSITION(ImportAtPlayhead)
+IMPORTPOSITION(ImportAtStart)
// if this is changed, remember to update the string table in sfdb_ui.cc
-IMPORTDISPOSITION(ImportDistinctFiles=0)
-IMPORTDISPOSITION(ImportMergeFiles=1)
-IMPORTDISPOSITION(ImportSerializeFiles=2)
-IMPORTDISPOSITION(ImportDistinctChannels=3)
+IMPORTDISPOSITION(ImportDistinctFiles)
+IMPORTDISPOSITION(ImportMergeFiles)
+IMPORTDISPOSITION(ImportSerializeFiles)
+IMPORTDISPOSITION(ImportDistinctChannels)
EDITPOINT(EditAtPlayhead)
EDITPOINT(EditAtSelectedMarker)