summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codeimport
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-16 13:52:50 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-16 13:52:50 -0600
commit4123be718760f8cbfc7ba7100bd0177575946fbf (patch)
tree651706f1048dbd8dd7b5fa757e111da22c5f292c /umbrello/umbrello/codeimport
parentb49dd7506883d2c41563bca9398959863e919b35 (diff)
downloadtdesdk-4123be718760f8cbfc7ba7100bd0177575946fbf.tar.gz
tdesdk-4123be718760f8cbfc7ba7100bd0177575946fbf.zip
Additional renaming of kde to tde
Diffstat (limited to 'umbrello/umbrello/codeimport')
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/README8
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/ast.cpp2
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/ast.h2
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/ast_utils.cpp2
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/ast_utils.h2
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/cpptree2uml.cpp2
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/driver.cpp2
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/driver.h2
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/errors.cpp2
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/errors.h2
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/keywords.lut.h2
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/lexer.cpp2
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/lexer.h2
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/lookup.cpp2
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/lookup.h2
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/parser.cpp2
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/parser.h2
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/tree_parser.cpp2
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/tree_parser.h2
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/urlutil.cpp2
-rw-r--r--umbrello/umbrello/codeimport/kdevcppparser/urlutil.h6
21 files changed, 26 insertions, 26 deletions
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/README b/umbrello/umbrello/codeimport/kdevcppparser/README
index 3ed39eba..8d81c89f 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/README
+++ b/umbrello/umbrello/codeimport/kdevcppparser/README
@@ -1,16 +1,16 @@
This directory contains the C++ parser from Kdevelop-3.0.
-Following files are copies from the directory kdevelop/lib/cppparser:
+Following files are copies from the directory tdevelop/lib/cppparser:
ast.{h,cpp} driver.{h,cpp} errors.{h,cpp} keywords.lut.h lexer.{h,cpp}
lookup.{h,cpp} parser.{h,cpp} tree_parser.{h,cpp}
-Following files are copies from the directory kdevelop/languages/cpp:
+Following files are copies from the directory tdevelop/languages/cpp:
ast_utils.{h,cpp}
-Following files are copies from the directory kdevelop/lib/util:
+Following files are copies from the directory tdevelop/lib/util:
urlutil.{h,cpp}
-The source files cpptree2uml.{h,cpp} are based on kdevelop/languages/cpp/
+The source files cpptree2uml.{h,cpp} are based on tdevelop/languages/cpp/
store_walker.{h,cpp}. The class CppTree2Uml inherits from class TreeParser
and overrides certain methods from that class.
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/ast.cpp b/umbrello/umbrello/codeimport/kdevcppparser/ast.cpp
index e273aeb7..ebb10af4 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/ast.cpp
+++ b/umbrello/umbrello/codeimport/kdevcppparser/ast.cpp
@@ -1,5 +1,5 @@
/* This file is part of KDevelop
- Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
+ Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/ast.h b/umbrello/umbrello/codeimport/kdevcppparser/ast.h
index 0d6a4759..49520e33 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/ast.h
+++ b/umbrello/umbrello/codeimport/kdevcppparser/ast.h
@@ -1,5 +1,5 @@
/* This file is part of KDevelop
- Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
+ Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/ast_utils.cpp b/umbrello/umbrello/codeimport/kdevcppparser/ast_utils.cpp
index 9d070334..ee6937ac 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/ast_utils.cpp
+++ b/umbrello/umbrello/codeimport/kdevcppparser/ast_utils.cpp
@@ -1,6 +1,6 @@
/***************************************************************************
* Copyright (C) 2002 by Roberto Raggi *
- * roberto@kdevelop.org *
+ * roberto@tdevelop.org *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/ast_utils.h b/umbrello/umbrello/codeimport/kdevcppparser/ast_utils.h
index 1f6209db..f84f7249 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/ast_utils.h
+++ b/umbrello/umbrello/codeimport/kdevcppparser/ast_utils.h
@@ -1,6 +1,6 @@
/***************************************************************************
* Copyright (C) 2002 by Roberto Raggi *
- * roberto@kdevelop.org *
+ * roberto@tdevelop.org *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/cpptree2uml.cpp b/umbrello/umbrello/codeimport/kdevcppparser/cpptree2uml.cpp
index 8bb7167a..4bc15f65 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/cpptree2uml.cpp
+++ b/umbrello/umbrello/codeimport/kdevcppparser/cpptree2uml.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Based on kdevelop-3.0 languages/cpp/store_walker.cpp by Roberto Raggi *
+ * Based on tdevelop-3.0 languages/cpp/store_walker.cpp by Roberto Raggi *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/driver.cpp b/umbrello/umbrello/codeimport/kdevcppparser/driver.cpp
index c1db8656..d3c8a1df 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/driver.cpp
+++ b/umbrello/umbrello/codeimport/kdevcppparser/driver.cpp
@@ -1,5 +1,5 @@
/* This file is part of KDevelop
- Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
+ Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/driver.h b/umbrello/umbrello/codeimport/kdevcppparser/driver.h
index 9c365129..a349b7c8 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/driver.h
+++ b/umbrello/umbrello/codeimport/kdevcppparser/driver.h
@@ -1,5 +1,5 @@
/* This file is part of KDevelop
- Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
+ Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/errors.cpp b/umbrello/umbrello/codeimport/kdevcppparser/errors.cpp
index 9a18ddd6..e3cb19e5 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/errors.cpp
+++ b/umbrello/umbrello/codeimport/kdevcppparser/errors.cpp
@@ -1,5 +1,5 @@
/* This file is part of KDevelop
- Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
+ Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/errors.h b/umbrello/umbrello/codeimport/kdevcppparser/errors.h
index 6751475e..e0959250 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/errors.h
+++ b/umbrello/umbrello/codeimport/kdevcppparser/errors.h
@@ -1,5 +1,5 @@
/* This file is part of KDevelop
- Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
+ Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/keywords.lut.h b/umbrello/umbrello/codeimport/kdevcppparser/keywords.lut.h
index 1969fdb7..e733a254 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/keywords.lut.h
+++ b/umbrello/umbrello/codeimport/kdevcppparser/keywords.lut.h
@@ -1,4 +1,4 @@
-/* Automatically generated from keywords.table using /home/roberto/src/kdelibs/kjs/create_hash_table. DO NOT EDIT ! */
+/* Automatically generated from keywords.table using /home/roberto/src/tdelibs/kjs/create_hash_table. DO NOT EDIT ! */
static const struct HashEntry keywordEntries[] = {
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/lexer.cpp b/umbrello/umbrello/codeimport/kdevcppparser/lexer.cpp
index f51c9986..f91813f1 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/lexer.cpp
+++ b/umbrello/umbrello/codeimport/kdevcppparser/lexer.cpp
@@ -1,5 +1,5 @@
/* This file is part of KDevelop
- Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
+ Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/lexer.h b/umbrello/umbrello/codeimport/kdevcppparser/lexer.h
index 3b26fb0c..0e15f053 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/lexer.h
+++ b/umbrello/umbrello/codeimport/kdevcppparser/lexer.h
@@ -1,5 +1,5 @@
/* This file is part of KDevelop
- Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
+ Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/lookup.cpp b/umbrello/umbrello/codeimport/kdevcppparser/lookup.cpp
index 87b5b546..a05a7ddf 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/lookup.cpp
+++ b/umbrello/umbrello/codeimport/kdevcppparser/lookup.cpp
@@ -19,7 +19,7 @@
*
*/
-// adapted to kdevelop by Roberto Raggi <roberto@kdevelop.org>
+// adapted to tdevelop by Roberto Raggi <roberto@tdevelop.org>
#include "lookup.h"
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/lookup.h b/umbrello/umbrello/codeimport/kdevcppparser/lookup.h
index b2bad4de..615d8a00 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/lookup.h
+++ b/umbrello/umbrello/codeimport/kdevcppparser/lookup.h
@@ -19,7 +19,7 @@
*
*/
-// adapted to kdevelop by Roberto Raggi <roberto@kdevelop.org>
+// adapted to tdevelop by Roberto Raggi <roberto@tdevelop.org>
#ifndef _KJSLOOKUP_H_
#define _KJSLOOKUP_H_
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/parser.cpp b/umbrello/umbrello/codeimport/kdevcppparser/parser.cpp
index 066ff36b..51837b1e 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/parser.cpp
+++ b/umbrello/umbrello/codeimport/kdevcppparser/parser.cpp
@@ -1,5 +1,5 @@
/* This file is part of KDevelop
- Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
+ Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/parser.h b/umbrello/umbrello/codeimport/kdevcppparser/parser.h
index 9be954c2..930a563f 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/parser.h
+++ b/umbrello/umbrello/codeimport/kdevcppparser/parser.h
@@ -1,5 +1,5 @@
/* This file is part of KDevelop
- Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
+ Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/tree_parser.cpp b/umbrello/umbrello/codeimport/kdevcppparser/tree_parser.cpp
index 454c4b99..d419336e 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/tree_parser.cpp
+++ b/umbrello/umbrello/codeimport/kdevcppparser/tree_parser.cpp
@@ -1,5 +1,5 @@
/* This file is part of KDevelop
- Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
+ Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/tree_parser.h b/umbrello/umbrello/codeimport/kdevcppparser/tree_parser.h
index 5377358b..66fc05ef 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/tree_parser.h
+++ b/umbrello/umbrello/codeimport/kdevcppparser/tree_parser.h
@@ -1,5 +1,5 @@
/* This file is part of KDevelop
- Copyright (C) 2002,2003 Roberto Raggi <roberto@kdevelop.org>
+ Copyright (C) 2002,2003 Roberto Raggi <roberto@tdevelop.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/urlutil.cpp b/umbrello/umbrello/codeimport/kdevcppparser/urlutil.cpp
index 92886e07..8b8cc8eb 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/urlutil.cpp
+++ b/umbrello/umbrello/codeimport/kdevcppparser/urlutil.cpp
@@ -30,7 +30,7 @@
#include <limits.h>
#include <stdlib.h>
-#include <kdeversion.h>
+#include <tdeversion.h>
#if (TDE_VERSION_MINOR==0) && (TDE_VERSION_MAJOR==3)
#include <kdevkurl.h>
#endif
diff --git a/umbrello/umbrello/codeimport/kdevcppparser/urlutil.h b/umbrello/umbrello/codeimport/kdevcppparser/urlutil.h
index 2d05b162..8f761791 100644
--- a/umbrello/umbrello/codeimport/kdevcppparser/urlutil.h
+++ b/umbrello/umbrello/codeimport/kdevcppparser/urlutil.h
@@ -77,10 +77,10 @@ namespace URLUtil
* If baseDirUrl == url.path() then it will return ".".
* <code>
* KURL baseUrl, dirUrl;
- * baseUrl.setPath( "/home/mario/src/kdevelop/" );
- * dirUrl.setPath( "/home/mario/src/kdevelop/parts/cvs/" );
+ * baseUrl.setPath( "/home/mario/src/tdevelop/" );
+ * dirUrl.setPath( "/home/mario/src/tdevelop/parts/cvs/" );
* TQString relPathName = extractDirPathRelative( baseUrl, url ); // == "parts/cvs/"
- * TQString absPathName = extractDirPathAbsolute( url ); // == "/home/mario/src/kdevelop/parts/cvs/"
+ * TQString absPathName = extractDirPathAbsolute( url ); // == "/home/mario/src/tdevelop/parts/cvs/"
* </code>
* Note that if you pass a file name in @p url (instead of a directory) or the @p baseUrl is not contained
* in @p url then the function will return "" (void string).