summaryrefslogtreecommitdiffstats
path: root/src/kvilib/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/kvilib/core')
-rw-r--r--src/kvilib/core/kvi_error.cpp4
-rw-r--r--src/kvilib/core/kvi_pointerhashtable.h4
-rw-r--r--src/kvilib/core/kvi_pointerlist.h2
-rw-r--r--src/kvilib/core/kvi_qstring.h2
4 files changed, 6 insertions, 6 deletions
diff --git a/src/kvilib/core/kvi_error.cpp b/src/kvilib/core/kvi_error.cpp
index bbd1abcd..2786984b 100644
--- a/src/kvilib/core/kvi_error.cpp
+++ b/src/kvilib/core/kvi_error.cpp
@@ -57,7 +57,7 @@ const char * g_errorTable[KVI_NUM_ERRORS]=
__tr_no_lookup("Unexpected end of command in dictionary key"), // 006: unexpectedEndInDictionaryKey
__tr_no_lookup("Switch dash without switch letter"), // 007: switchDashWithoutSwitchLetter
__tr_no_lookup("Unknown function"), // 008: unknownFunction
- __tr_no_lookup("Unexpected end of command in tqparenthesis"), // 009: unexpectedEndInParenthesis
+ __tr_no_lookup("Unexpected end of command in parenthesis"), // 009: unexpectedEndInParenthesis
__tr_no_lookup("Unexpected end of command in function parameters"), // 010: unexpectedEndInFunctionParams
__tr_no_lookup("Missing variable name"), // 011: missingVariableName
__tr_no_lookup("Variable or identifier expected"), // 012: variableOrIdentifierExpected
@@ -112,7 +112,7 @@ const char * g_errorTable[KVI_NUM_ERRORS]=
__tr_no_lookup("Integer parameter expected"), // 061
__tr_no_lookup("Invalid parameter"), // 062
__tr_no_lookup("No such file"), // 063
- __tr_no_lookup("Open tqparenthesis expected"), // 064
+ __tr_no_lookup("Open parenthesis expected"), // 064
__tr_no_lookup("Open brace expected"), // 065
__tr_no_lookup("Can't kill a builtin class"), // 066
__tr_no_lookup("The SOCKSV4 protocol lacks IpV6 support"), // 067
diff --git a/src/kvilib/core/kvi_pointerhashtable.h b/src/kvilib/core/kvi_pointerhashtable.h
index 4a9b20d8..dceceeda 100644
--- a/src/kvilib/core/kvi_pointerhashtable.h
+++ b/src/kvilib/core/kvi_pointerhashtable.h
@@ -681,7 +681,7 @@ public:
/// Removes all items in the hash table and then
/// makes a complete shallow copy of the data contained in t.
/// The removed items are deleted if autodeletion is enabled.
- /// The hash table iterator is tqinvalidated.
+ /// The hash table iterator is invalidated.
/// Does not change autodelete flag: make sure you not delete the items twice :)
///
void copyFrom(KviPointerHashTable<Key,T> &t)
@@ -693,7 +693,7 @@ public:
///
/// Inserts a complete shallow copy of the data contained in t.
- /// The hash table iterator is tqinvalidated.
+ /// The hash table iterator is invalidated.
///
void insert(KviPointerHashTable<Key,T> &t)
{
diff --git a/src/kvilib/core/kvi_pointerlist.h b/src/kvilib/core/kvi_pointerlist.h
index 8b5cb9c5..2051036c 100644
--- a/src/kvilib/core/kvi_pointerlist.h
+++ b/src/kvilib/core/kvi_pointerlist.h
@@ -630,7 +630,7 @@ public:
/// A call to this function should be preceded by a call to
/// first(),last(),at() or tqfindRef().
/// This function will return a NULL pointer if the current
- /// item has been tqinvalidated due to a remove operation.
+ /// item has been invalidated due to a remove operation.
///
T * safeCurrent()
{
diff --git a/src/kvilib/core/kvi_qstring.h b/src/kvilib/core/kvi_qstring.h
index d5addebf..dc75deb0 100644
--- a/src/kvilib/core/kvi_qstring.h
+++ b/src/kvilib/core/kvi_qstring.h
@@ -249,7 +249,7 @@ namespace KviTQString
// WARNING: DO NOT USE CONSTRUCTS LIKE char * c = KviTQString::toUtf8(something).data();
// They are dangerous since with many compilers the returned string gets destroyed
- // at the end of the instruction and the c pointer gets thus tqinvalidated.
+ // at the end of the instruction and the c pointer gets thus invalidated.
// Use
// KviTQCString tmp = KviTQString::toUtf8(something);
// char * c = tmp.data();