summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codeimport
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/codeimport')
-rw-r--r--umbrello/umbrello/codeimport/adaimport.h2
-rw-r--r--umbrello/umbrello/codeimport/classimport.h2
-rw-r--r--umbrello/umbrello/codeimport/cppimport.h2
-rw-r--r--umbrello/umbrello/codeimport/idlimport.h2
-rw-r--r--umbrello/umbrello/codeimport/import_utils.h2
-rw-r--r--umbrello/umbrello/codeimport/javaimport.h2
-rw-r--r--umbrello/umbrello/codeimport/nativeimportbase.h2
-rw-r--r--umbrello/umbrello/codeimport/pascalimport.h2
-rw-r--r--umbrello/umbrello/codeimport/pythonimport.h2
9 files changed, 9 insertions, 9 deletions
diff --git a/umbrello/umbrello/codeimport/adaimport.h b/umbrello/umbrello/codeimport/adaimport.h
index b7f3d3de..7c66f0cd 100644
--- a/umbrello/umbrello/codeimport/adaimport.h
+++ b/umbrello/umbrello/codeimport/adaimport.h
@@ -21,7 +21,7 @@
/**
* Ada code import
* @author Oliver Kellogg
- * Bugs and comments to uml-devel@lists.sf.net or http://bugs.kde.org
+ * Bugs and comments to uml-devel@lists.sf.net or http://bugs.trinitydesktop.org
*/
class AdaImport : public NativeImportBase {
public:
diff --git a/umbrello/umbrello/codeimport/classimport.h b/umbrello/umbrello/codeimport/classimport.h
index e9820aa1..815943c8 100644
--- a/umbrello/umbrello/codeimport/classimport.h
+++ b/umbrello/umbrello/codeimport/classimport.h
@@ -19,7 +19,7 @@
* Abstract base for programming language specific import classes
* @author Mikko Pasanen
* @author Oliver Kellogg
- * Bugs and comments to uml-devel@lists.sf.net or http://bugs.kde.org
+ * Bugs and comments to uml-devel@lists.sf.net or http://bugs.trinitydesktop.org
*/
class ClassImport {
diff --git a/umbrello/umbrello/codeimport/cppimport.h b/umbrello/umbrello/codeimport/cppimport.h
index bf980bf4..04cc1d12 100644
--- a/umbrello/umbrello/codeimport/cppimport.h
+++ b/umbrello/umbrello/codeimport/cppimport.h
@@ -20,7 +20,7 @@ class CppDriver;
/**
* C++ code import
* @author Oliver Kellogg
- * Bugs and comments to uml-devel@lists.sf.net or http://bugs.kde.org
+ * Bugs and comments to uml-devel@lists.sf.net or http://bugs.trinitydesktop.org
*/
class CppImport : public ClassImport {
diff --git a/umbrello/umbrello/codeimport/idlimport.h b/umbrello/umbrello/codeimport/idlimport.h
index b5e88113..82f6582e 100644
--- a/umbrello/umbrello/codeimport/idlimport.h
+++ b/umbrello/umbrello/codeimport/idlimport.h
@@ -17,7 +17,7 @@
/**
* CORBA IDL code import
* @author Oliver Kellogg
- * Bugs and comments to uml-devel@lists.sf.net or http://bugs.kde.org
+ * Bugs and comments to uml-devel@lists.sf.net or http://bugs.trinitydesktop.org
*/
class IDLImport : public NativeImportBase {
public:
diff --git a/umbrello/umbrello/codeimport/import_utils.h b/umbrello/umbrello/codeimport/import_utils.h
index 4a04190f..07794faf 100644
--- a/umbrello/umbrello/codeimport/import_utils.h
+++ b/umbrello/umbrello/codeimport/import_utils.h
@@ -25,7 +25,7 @@ class UMLEnum;
/**
* Utilities for code import
* @author Oliver Kellogg
- * Bugs and comments to uml-devel@lists.sf.net or http://bugs.kde.org
+ * Bugs and comments to uml-devel@lists.sf.net or http://bugs.trinitydesktop.org
*/
namespace Import_Utils {
diff --git a/umbrello/umbrello/codeimport/javaimport.h b/umbrello/umbrello/codeimport/javaimport.h
index 05dcbcb1..204895e2 100644
--- a/umbrello/umbrello/codeimport/javaimport.h
+++ b/umbrello/umbrello/codeimport/javaimport.h
@@ -19,7 +19,7 @@
* Java code import
* @author Oliver Kellogg
* @author JP Fournier
- * Bugs and comments to uml-devel@lists.sf.net or http://bugs.kde.org
+ * Bugs and comments to uml-devel@lists.sf.net or http://bugs.trinitydesktop.org
*/
class JavaImport : public NativeImportBase {
public:
diff --git a/umbrello/umbrello/codeimport/nativeimportbase.h b/umbrello/umbrello/codeimport/nativeimportbase.h
index 292fd5d1..34fac328 100644
--- a/umbrello/umbrello/codeimport/nativeimportbase.h
+++ b/umbrello/umbrello/codeimport/nativeimportbase.h
@@ -39,7 +39,7 @@ class UMLClassifier;
*
* @short Base class for native implementations of language import
* @author Oliver Kellogg <okellogg@users.sourceforge.net>
- * Bugs and comments to uml-devel@lists.sf.net or http://bugs.kde.org
+ * Bugs and comments to uml-devel@lists.sf.net or http://bugs.trinitydesktop.org
*/
class NativeImportBase : public ClassImport {
public:
diff --git a/umbrello/umbrello/codeimport/pascalimport.h b/umbrello/umbrello/codeimport/pascalimport.h
index 55c0b2bd..3efe8ac7 100644
--- a/umbrello/umbrello/codeimport/pascalimport.h
+++ b/umbrello/umbrello/codeimport/pascalimport.h
@@ -17,7 +17,7 @@
/**
* Pascal code import
* @author Oliver Kellogg
- * Bugs and comments to uml-devel@lists.sf.net or http://bugs.kde.org
+ * Bugs and comments to uml-devel@lists.sf.net or http://bugs.trinitydesktop.org
*/
class PascalImport : public NativeImportBase {
public:
diff --git a/umbrello/umbrello/codeimport/pythonimport.h b/umbrello/umbrello/codeimport/pythonimport.h
index d5c62a91..b4afa699 100644
--- a/umbrello/umbrello/codeimport/pythonimport.h
+++ b/umbrello/umbrello/codeimport/pythonimport.h
@@ -17,7 +17,7 @@
/**
* Python code import
* @author Oliver Kellogg
- * Bugs and comments to uml-devel@lists.sf.net or http://bugs.kde.org
+ * Bugs and comments to uml-devel@lists.sf.net or http://bugs.trinitydesktop.org
*/
class PythonImport : public NativeImportBase {
public: