aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-09-04 01:32:50 +0000
committerDavid Robillard <d@drobilla.net>2010-09-04 01:32:50 +0000
commit52840824f7bfd69f4b6c47272495dad16fc33525 (patch)
tree0663d81bd122a3d2dde763e81a94065eb7ca3f71
parent3a1f8673d51014c26a715e6f5442d8ec744a0cad (diff)
downloadmda.lv2-52840824f7bfd69f4b6c47272495dad16fc33525.tar.gz
mda.lv2-52840824f7bfd69f4b6c47272495dad16fc33525.tar.bz2
mda.lv2-52840824f7bfd69f4b6c47272495dad16fc33525.zip
My name is David. :)
git-svn-id: http://svn.drobilla.net/lad/trunk/mda-lv2@2590 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--README4
-rw-r--r--lv2_ui.h2
-rw-r--r--lvz/audioeffectx.h2
-rw-r--r--lvz/gendata.cpp2
-rw-r--r--lvz/gui_wrapper.cpp2
-rw-r--r--lvz/wrapper.cpp2
-rw-r--r--src/mdaSpecMeter.h2
-rw-r--r--vstgui/vstcontrols.cpp2
-rw-r--r--vstgui/vstcontrols.h2
-rw-r--r--vstgui/vstgui.cpp2
-rw-r--r--vstgui/vstgui.h2
-rw-r--r--vstgui/vstkeycode.h2
12 files changed, 13 insertions, 13 deletions
diff --git a/README b/README
index 23faf4b..39da72c 100644
--- a/README
+++ b/README
@@ -6,7 +6,7 @@ This is a port of the MDA VST plugins to LV2.
MDA plugins are originally by Paul Kellett and were released under the GPL
v2 or later, or the MIT license. Thanks, Paul!
-This port is by Dave Robillard, and is 100% Free Software (including the only
+This port is by David Robillard, and is 100% Free Software (including the only
dependency lv2.h) released under the GPL v2 or later. See COPYING for details.
This port is based on revision 10 of the MDA SVN repository at:
@@ -25,7 +25,7 @@ code was written against this API.
These plugins make no claim of compatibility, or any other relation, to VST.
This code does not require the VST SDK, or any other non-free softare.
This code has never come into contact with any part of the VST SDK.
-I (Dave Robillard) have never come into contact with any part of the VST SDK.
+I (David Robillard) have never come into contact with any part of the VST SDK.
Clear? :)
I have named this wrapper/interface "LVZ" (for LV0, condescension intended).
diff --git a/lv2_ui.h b/lv2_ui.h
index c84a74e..75ccf22 100644
--- a/lv2_ui.h
+++ b/lv2_ui.h
@@ -8,7 +8,7 @@
*
* Copyright (C) 2000-2002 Richard W.E. Furse, Paul Barton-Davis,
* Stefan Westerfeld
- * Copyright (C) 2006 Steve Harris, Dave Robillard.
+ * Copyright (C) 2006 Steve Harris, David Robillard.
*
* This header is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published
diff --git a/lvz/audioeffectx.h b/lvz/audioeffectx.h
index e00bf96..28058bf 100644
--- a/lvz/audioeffectx.h
+++ b/lvz/audioeffectx.h
@@ -1,5 +1,5 @@
/* LVZ - A C++ interface for writing LV2 plugins.
- * Copyright (C) 2008-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2008-2009 David Robillard <http://drobilla.net>
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
diff --git a/lvz/gendata.cpp b/lvz/gendata.cpp
index d04198f..d641ad0 100644
--- a/lvz/gendata.cpp
+++ b/lvz/gendata.cpp
@@ -1,5 +1,5 @@
/* LVZ - A C++ interface for writing LV2 plugins.
- * Copyright (C) 2008-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2008-2009 David Robillard <http://drobilla.net>
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
diff --git a/lvz/gui_wrapper.cpp b/lvz/gui_wrapper.cpp
index f828ab6..25377e8 100644
--- a/lvz/gui_wrapper.cpp
+++ b/lvz/gui_wrapper.cpp
@@ -1,5 +1,5 @@
/* LVZ - A C++ interface for writing LV2 plugins.
- * Copyright (C) 2008-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2008-2009 David Robillard <http://drobilla.net>
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
diff --git a/lvz/wrapper.cpp b/lvz/wrapper.cpp
index 0eb16c2..ecd1595 100644
--- a/lvz/wrapper.cpp
+++ b/lvz/wrapper.cpp
@@ -1,5 +1,5 @@
/* LVZ - A C++ interface for writing LV2 plugins.
- * Copyright (C) 2008-2009 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2008-2009 David Robillard <http://drobilla.net>
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
diff --git a/src/mdaSpecMeter.h b/src/mdaSpecMeter.h
index 70c5256..4a5d312 100644
--- a/src/mdaSpecMeter.h
+++ b/src/mdaSpecMeter.h
@@ -2,7 +2,7 @@
// Plug-in: "MDA SpecMeter"
//
// Copyright(c)1999-2000 Paul Kellett (maxim digital audio)
-// Copyright (C) 2008-2009 Dave Robillard
+// Copyright (C) 2008-2009 David Robillard
//
#include "audioeffectx.h"
diff --git a/vstgui/vstcontrols.cpp b/vstgui/vstcontrols.cpp
index 0b0800c..ac85d2b 100644
--- a/vstgui/vstcontrols.cpp
+++ b/vstgui/vstcontrols.cpp
@@ -1,6 +1,6 @@
/* ----------------------------------------------------------------------------
* VSTGUI for X11/LV2/PNG
- * Author: Dave Robillard
+ * Author: David Robillard
* Released under the revised BSD license, as below
* ----------------------------------------------------------------------------
*
diff --git a/vstgui/vstcontrols.h b/vstgui/vstcontrols.h
index 0505f82..bef6319 100644
--- a/vstgui/vstcontrols.h
+++ b/vstgui/vstcontrols.h
@@ -1,6 +1,6 @@
/* ----------------------------------------------------------------------------
* VSTGUI for X11/LV2/PNG
- * Author: Dave Robillard
+ * Author: David Robillard
* Released under the revised BSD license, as below
* ----------------------------------------------------------------------------
*
diff --git a/vstgui/vstgui.cpp b/vstgui/vstgui.cpp
index fe2ef55..6757b5e 100644
--- a/vstgui/vstgui.cpp
+++ b/vstgui/vstgui.cpp
@@ -1,6 +1,6 @@
/* ----------------------------------------------------------------------------
* VSTGUI for X11/LV2/PNG
- * Author: Dave Robillard
+ * Author: David Robillard
* Released under the revised BSD license, as below
* ----------------------------------------------------------------------------
*
diff --git a/vstgui/vstgui.h b/vstgui/vstgui.h
index 9ee6be0..43789e4 100644
--- a/vstgui/vstgui.h
+++ b/vstgui/vstgui.h
@@ -1,6 +1,6 @@
/* ----------------------------------------------------------------------------
* VSTGUI for X11/LV2/PNG
- * Author: Dave Robillard
+ * Author: David Robillard
* Released under the revised BSD license, as below
* ----------------------------------------------------------------------------
*
diff --git a/vstgui/vstkeycode.h b/vstgui/vstkeycode.h
index 1eba98c..c4565db 100644
--- a/vstgui/vstkeycode.h
+++ b/vstgui/vstkeycode.h
@@ -1,6 +1,6 @@
/* ----------------------------------------------------------------------------
* VSTGUI for X11/LV2/PNG
- * Author: Dave Robillard
+ * Author: David Robillard
* Released under the revised BSD license, as below
* ----------------------------------------------------------------------------
*