'libs/panners' - Remove the temporary export specifiers that were only used for testing
authorJohn Emmas <johne53@tiscali.co.uk>
Tue, 3 Sep 2013 14:53:24 +0000 (15:53 +0100)
committerJohn Emmas <johne53@tiscali.co.uk>
Tue, 3 Sep 2013 14:53:24 +0000 (15:53 +0100)
libs/panners/1in2out/panner_1in2out.cc
libs/panners/1in2out/panner_1in2out.h

index 4a5ff51a4b768f1faa0ba15e40062b1bbcbaa34f..00024768e4f8a9c2d7b527f367edaa1e72aa5b18 100644 (file)
@@ -105,7 +105,7 @@ Panner1in2out::update ()
         desired_right = panR * (scale * panR + 1.0f - scale);
 }
 
-ARDOURPANNER_API void
+void
 Panner1in2out::set_position (double p)
 {
         if (clamp_position (p)) {
@@ -113,7 +113,7 @@ Panner1in2out::set_position (double p)
         }
 }
 
-ARDOURPANNER_API bool
+bool
 Panner1in2out::clamp_position (double& p)
 {
         /* any position between 0.0 and 1.0 is legal */
index f035115f6a4b873cdf52635f306116a9ab5c9046..912072096bd282806b10714d4404b151e923f5e8 100644 (file)
@@ -42,8 +42,8 @@ class Panner1in2out : public Panner
        Panner1in2out (boost::shared_ptr<Pannable>);
        ~Panner1in2out ();
 
-    ARDOURPANNER_API void set_position (double);
-    ARDOURPANNER_API bool clamp_position (double&);
+    void set_position (double);
+    bool clamp_position (double&);
        std::pair<double, double> position_range () const;
 
         double position() const;