summaryrefslogtreecommitdiff
path: root/gtk2_ardour/curvetest.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-05-05 14:16:13 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-05-05 14:16:13 +0000
commit6bd097cc351655ce61e6cfe5490ff7253be044ea (patch)
tree7c5f5de0e6d6364b14d499f4cae7dfa37f4f960c /gtk2_ardour/curvetest.cc
parent7dd9582855620b04b351087adf3425c3c39306b0 (diff)
fix up unexpected situation with fontconfig in our packages
git-svn-id: svn://localhost/ardour2/branches/3.0@12190 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/curvetest.cc')
-rw-r--r--gtk2_ardour/curvetest.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk2_ardour/curvetest.cc b/gtk2_ardour/curvetest.cc
index 498ed45eba..b3431e3f39 100644
--- a/gtk2_ardour/curvetest.cc
+++ b/gtk2_ardour/curvetest.cc
@@ -32,6 +32,11 @@ using namespace PBD;
int
curvetest (string filename)
{
+ // needed to initialize ID objects/counter used
+ // by Curve et al.
+
+ PBD::ID::init ();
+
ifstream in (filename.c_str());
stringstream line;
//Evoral::Parameter param(GainAutomation, -1.0, +1.0, 0.0);
@@ -40,11 +45,6 @@ curvetest (string filename)
double minx = DBL_MAX;
double maxx = DBL_MIN;
- // needed to initialize ID objects/counter used
- // by Curve et al.
-
- PBD::ID::init ();
-
while (in) {
double x, y;