summaryrefslogtreecommitdiff
path: root/sources/prefs
diff options
context:
space:
mode:
authorPaul Buetow <git@mx.buetow.org>2021-05-01 08:57:54 +0100
committerPaul Buetow <git@mx.buetow.org>2021-05-01 08:57:54 +0100
commitf0520c87217902e8109a47784963850cbdb7cd1d (patch)
treef4bbe8f1fad9b82ebc864acaebf6929d29ab5d6c /sources/prefs
parentc3448b235e697a615a35858326bedb89efb77fc0 (diff)
fix URIs in headers
Diffstat (limited to 'sources/prefs')
-rw-r--r--sources/prefs/VSDefaultPrefs.java4
-rw-r--r--sources/prefs/VSDefaultPrefsDE.java2
-rw-r--r--sources/prefs/VSPrefs.java2
-rw-r--r--sources/prefs/VSPrefsRestriction.java2
-rw-r--r--sources/prefs/VSSerializablePrefs.java2
-rw-r--r--sources/prefs/editors/VSAbstractBetterEditor.java2
-rw-r--r--sources/prefs/editors/VSAbstractEditor.java2
-rw-r--r--sources/prefs/editors/VSColorChooser.java2
-rw-r--r--sources/prefs/editors/VSEditorFrame.java2
-rw-r--r--sources/prefs/editors/VSEditorTable.java2
-rw-r--r--sources/prefs/editors/VSProcessEditor.java2
-rw-r--r--sources/prefs/editors/VSSimulatorEditor.java2
12 files changed, 13 insertions, 13 deletions
diff --git a/sources/prefs/VSDefaultPrefs.java b/sources/prefs/VSDefaultPrefs.java
index 63a2127..dfb2d2c 100644
--- a/sources/prefs/VSDefaultPrefs.java
+++ b/sources/prefs/VSDefaultPrefs.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008 Paul C. Buetow, vs@dev.buetow.org
+ * Copyright (c) 2008 Paul C. Buetow, vs-sim@dev.buetow.org
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@@ -72,7 +72,7 @@ public class VSDefaultPrefs extends VSSerializablePrefs {
*/
public void fillDefaultStrings() {
initString("lang.en.about", "About");
- initString("lang.en.about.info", "This program used to be the diploma thesis of Paul C. Buetow. Please contact vs@dev.buetow.org, if you find any errors!");
+ initString("lang.en.about.info", "This program used to be the diploma thesis of Paul C. Buetow. Please contact vs-sim@dev.buetow.org, if you find any errors!");
initString("lang.en.activate", "activate");
initString("lang.en.activated", "activated");
initString("lang.en.actualize", "Activation");
diff --git a/sources/prefs/VSDefaultPrefsDE.java b/sources/prefs/VSDefaultPrefsDE.java
index 9f65153..71ed8a0 100644
--- a/sources/prefs/VSDefaultPrefsDE.java
+++ b/sources/prefs/VSDefaultPrefsDE.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008 Paul C. Buetow, vs@dev.buetow.org
+ * Copyright (c) 2008 Paul C. Buetow, vs-sim@dev.buetow.org
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/sources/prefs/VSPrefs.java b/sources/prefs/VSPrefs.java
index 31e1f22..9f3be24 100644
--- a/sources/prefs/VSPrefs.java
+++ b/sources/prefs/VSPrefs.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008 Paul C. Buetow, vs@dev.buetow.org
+ * Copyright (c) 2008 Paul C. Buetow, vs-sim@dev.buetow.org
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/sources/prefs/VSPrefsRestriction.java b/sources/prefs/VSPrefsRestriction.java
index 0709713..52ab744 100644
--- a/sources/prefs/VSPrefsRestriction.java
+++ b/sources/prefs/VSPrefsRestriction.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008 Paul C. Buetow, vs@dev.buetow.org
+ * Copyright (c) 2008 Paul C. Buetow, vs-sim@dev.buetow.org
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/sources/prefs/VSSerializablePrefs.java b/sources/prefs/VSSerializablePrefs.java
index 66a2c83..69ad3f7 100644
--- a/sources/prefs/VSSerializablePrefs.java
+++ b/sources/prefs/VSSerializablePrefs.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008 Paul C. Buetow, vs@dev.buetow.org
+ * Copyright (c) 2008 Paul C. Buetow, vs-sim@dev.buetow.org
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/sources/prefs/editors/VSAbstractBetterEditor.java b/sources/prefs/editors/VSAbstractBetterEditor.java
index 556b14a..9d3fb88 100644
--- a/sources/prefs/editors/VSAbstractBetterEditor.java
+++ b/sources/prefs/editors/VSAbstractBetterEditor.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008 Paul C. Buetow, vs@dev.buetow.org
+ * Copyright (c) 2008 Paul C. Buetow, vs-sim@dev.buetow.org
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/sources/prefs/editors/VSAbstractEditor.java b/sources/prefs/editors/VSAbstractEditor.java
index 6118c7e..38f0226 100644
--- a/sources/prefs/editors/VSAbstractEditor.java
+++ b/sources/prefs/editors/VSAbstractEditor.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008 Paul C. Buetow, vs@dev.buetow.org
+ * Copyright (c) 2008 Paul C. Buetow, vs-sim@dev.buetow.org
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/sources/prefs/editors/VSColorChooser.java b/sources/prefs/editors/VSColorChooser.java
index 619bc17..532cdae 100644
--- a/sources/prefs/editors/VSColorChooser.java
+++ b/sources/prefs/editors/VSColorChooser.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008 Paul C. Buetow, vs@dev.buetow.org
+ * Copyright (c) 2008 Paul C. Buetow, vs-sim@dev.buetow.org
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/sources/prefs/editors/VSEditorFrame.java b/sources/prefs/editors/VSEditorFrame.java
index 855bf0a..3bbee1d 100644
--- a/sources/prefs/editors/VSEditorFrame.java
+++ b/sources/prefs/editors/VSEditorFrame.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008 Paul C. Buetow, vs@dev.buetow.org
+ * Copyright (c) 2008 Paul C. Buetow, vs-sim@dev.buetow.org
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/sources/prefs/editors/VSEditorTable.java b/sources/prefs/editors/VSEditorTable.java
index 246bd8e..4fff4a2 100644
--- a/sources/prefs/editors/VSEditorTable.java
+++ b/sources/prefs/editors/VSEditorTable.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008 Paul C. Buetow, vs@dev.buetow.org
+ * Copyright (c) 2008 Paul C. Buetow, vs-sim@dev.buetow.org
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/sources/prefs/editors/VSProcessEditor.java b/sources/prefs/editors/VSProcessEditor.java
index eaacc7b..0009f9a 100644
--- a/sources/prefs/editors/VSProcessEditor.java
+++ b/sources/prefs/editors/VSProcessEditor.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008 Paul C. Buetow, vs@dev.buetow.org
+ * Copyright (c) 2008 Paul C. Buetow, vs-sim@dev.buetow.org
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
diff --git a/sources/prefs/editors/VSSimulatorEditor.java b/sources/prefs/editors/VSSimulatorEditor.java
index edd9cd5..137ca77 100644
--- a/sources/prefs/editors/VSSimulatorEditor.java
+++ b/sources/prefs/editors/VSSimulatorEditor.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008 Paul C. Buetow, vs@dev.buetow.org
+ * Copyright (c) 2008 Paul C. Buetow, vs-sim@dev.buetow.org
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License