summaryrefslogtreecommitdiffstats
path: root/mcop
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commitf7959a4e97cdef8152a8bbf4e6d0b69cefea1baa (patch)
tree99affdbf92575f7b6d8cc418f7c0d58d7a9012cf /mcop
parent54dec355e137f1efddb349314aef9bd999d4c3bf (diff)
downloadarts-f7959a4e97cdef8152a8bbf4e6d0b69cefea1baa.tar.gz
arts-f7959a4e97cdef8152a8bbf4e6d0b69cefea1baa.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/arts@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'mcop')
-rw-r--r--mcop/core.idl4
-rw-r--r--mcop/datapacket.h2
-rw-r--r--mcop/dynamicskeleton.h4
-rw-r--r--mcop/mcoputils.cc2
-rw-r--r--mcop/object.h2
5 files changed, 7 insertions, 7 deletions
diff --git a/mcop/core.idl b/mcop/core.idl
index ea1062b..156632a 100644
--- a/mcop/core.idl
+++ b/mcop/core.idl
@@ -211,7 +211,7 @@ struct AttributeDef {
* defines what methods/attributes a particular interface supports: these
* do not contain the methods/attributes of inherited interfaces.
*
- * inheritedInterfaces only tqcontains the names of Interfaces that this one
+ * inheritedInterfaces only contains the names of Interfaces that this one
* inherits in exactly one step. So to see if interface XYZ is inherited
* from ABC, you need to check the "inheritedInterfaces" of XYZ, and their
* "inheritedInterfaces" and their "inheritedInterfaces" and so on.
@@ -530,7 +530,7 @@ interface TmpGlobalComm : GlobalComm {
*/
/**
- * TraderOffer - this tqcontains an offer of an object (which is usually returned
+ * TraderOffer - this contains an offer of an object (which is usually returned
* as result of a query.
*/
interface TraderOffer {
diff --git a/mcop/datapacket.h b/mcop/datapacket.h
index e62348e..e7a08e0 100644
--- a/mcop/datapacket.h
+++ b/mcop/datapacket.h
@@ -201,7 +201,7 @@ protected:
};
/**
- * FloatDataPacket finally is one concrete DataPacket (which tqcontains the
+ * FloatDataPacket finally is one concrete DataPacket (which contains the
* information how to marshal a datapacket of type float)
*/
class ARTS_EXPORT FloatDataPacket : public RawDataPacket<float> {
diff --git a/mcop/dynamicskeleton.h b/mcop/dynamicskeleton.h
index 7fece5b..94fc8c5 100644
--- a/mcop/dynamicskeleton.h
+++ b/mcop/dynamicskeleton.h
@@ -60,11 +60,11 @@ public:
* process is called whenever you get a request that you need to implement
* dynamically
*
- * @param methodID tqcontains the ID of the method that you need to
+ * @param methodID contains the ID of the method that you need to
* implement - you can get the full signature by calling
* getMethodDef
*
- * @param request tqcontains the marshalled parameters
+ * @param request contains the marshalled parameters
*
* @param result is for the return code - if your method returns a
* value, you need to write the it in the result Buffer
diff --git a/mcop/mcoputils.cc b/mcop/mcoputils.cc
index 1bfe5df..2ba6ad2 100644
--- a/mcop/mcoputils.cc
+++ b/mcop/mcoputils.cc
@@ -411,7 +411,7 @@ string MCOPUtils::getFullHostname()
/*
* if gethostname() isn't a FQDN (guess that by checking whether it
- * tqcontains a dot), try to look it up to ensure it is
+ * contains a dot), try to look it up to ensure it is
*/
if(result.find('.') == string::npos && (hp = gethostbyname(buffer)) != 0)
result = hp->h_name;
diff --git a/mcop/object.h b/mcop/object.h
index dafddf7..f67bc67 100644
--- a/mcop/object.h
+++ b/mcop/object.h
@@ -70,7 +70,7 @@ private:
protected:
/**
- * ObjectInternalData tqcontains private data structures for
+ * ObjectInternalData contains private data structures for
* - Object_base
* - Object_stub
* - Object_skel