Fix erroneous parameter passed to Editor::motion_handler. Makes autoscroll work...
[ardour.git] / gtk2_ardour / main.cc
index 32454d69d561c655582b17e3c37fb89b2b4a0616..70f3a154988480fb4f0f52dad10c3014623e38ae 100644 (file)
@@ -50,6 +50,7 @@
 
 #include "i18n.h"
 
+using namespace std;
 using namespace Gtk;
 using namespace ARDOUR_COMMAND_LINE;
 using namespace ARDOUR;
@@ -282,7 +283,7 @@ fixup_bundle_environment ()
 #endif
 
 static void
-sigpipe_handler (int sig)
+sigpipe_handler (int /*sig*/)
 {
        cerr << _("SIGPIPE received - JACK has probably died") << endl;
 }
@@ -344,7 +345,7 @@ int main (int argc, char *argv[])
        
        cout << _("Ardour/GTK ") 
             << VERSIONSTRING
-            << _("\n   (built using ")
+            << _(" (built using ")
             << svn_revision
 #ifdef __GNUC__
             << _(" and GCC version ") << __VERSION__