summaryrefslogtreecommitdiffstats
path: root/kdeui/kdcopactionproxy.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdeui/kdcopactionproxy.cpp
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz
tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeui/kdcopactionproxy.cpp')
-rw-r--r--kdeui/kdcopactionproxy.cpp34
1 files changed, 17 insertions, 17 deletions
diff --git a/kdeui/kdcopactionproxy.cpp b/kdeui/kdcopactionproxy.cpp
index ac1138ab1..15e431da3 100644
--- a/kdeui/kdcopactionproxy.cpp
+++ b/kdeui/kdcopactionproxy.cpp
@@ -39,7 +39,7 @@ public:
KActionCollection *m_actionCollection;
DCOPObject *m_parent;
- QCString m_prefix;
+ TQCString m_prefix;
int m_pos;
};
@@ -67,10 +67,10 @@ KDCOPActionProxy::~KDCOPActionProxy()
delete d;
}
-QValueList<KAction *>KDCOPActionProxy::actions() const
+TQValueList<KAction *>KDCOPActionProxy::actions() const
{
if ( !d->m_actionCollection )
- return QValueList<KAction *>();
+ return TQValueList<KAction *>();
return d->m_actionCollection->actions();
}
@@ -83,30 +83,30 @@ KAction *KDCOPActionProxy::action( const char *name ) const
return d->m_actionCollection->action( name );
}
-QCString KDCOPActionProxy::actionObjectId( const QCString &name ) const
+TQCString KDCOPActionProxy::actionObjectId( const TQCString &name ) const
{
return d->m_prefix + name;
}
-QMap<QCString,DCOPRef> KDCOPActionProxy::actionMap( const QCString &appId ) const
+TQMap<TQCString,DCOPRef> KDCOPActionProxy::actionMap( const TQCString &appId ) const
{
- QMap<QCString,DCOPRef> res;
+ TQMap<TQCString,DCOPRef> res;
- QCString id = appId;
+ TQCString id = appId;
if ( id.isEmpty() )
id = kapp->dcopClient()->appId();
- QValueList<KAction *> lst = actions();
- QValueList<KAction *>::ConstIterator it = lst.begin();
- QValueList<KAction *>::ConstIterator end = lst.end();
+ TQValueList<KAction *> lst = actions();
+ TQValueList<KAction *>::ConstIterator it = lst.begin();
+ TQValueList<KAction *>::ConstIterator end = lst.end();
for (; it != end; ++it )
res.insert( (*it)->name(), DCOPRef( id, actionObjectId( (*it)->name() ) ) );
return res;
}
-bool KDCOPActionProxy::process( const QCString &obj, const QCString &fun, const QByteArray &data,
- QCString &replyType, QByteArray &replyData )
+bool KDCOPActionProxy::process( const TQCString &obj, const TQCString &fun, const TQByteArray &data,
+ TQCString &replyType, TQByteArray &replyData )
{
if ( obj.left( d->m_pos ) != d->m_prefix )
return false;
@@ -118,8 +118,8 @@ bool KDCOPActionProxy::process( const QCString &obj, const QCString &fun, const
return processAction( obj, fun, data, replyType, replyData, act );
}
-bool KDCOPActionProxy::processAction( const QCString &, const QCString &fun, const QByteArray &data,
- QCString &replyType, QByteArray &replyData, KAction *action )
+bool KDCOPActionProxy::processAction( const TQCString &, const TQCString &fun, const TQByteArray &data,
+ TQCString &replyType, TQByteArray &replyData, KAction *action )
{
if ( fun == "activate()" )
{
@@ -131,14 +131,14 @@ bool KDCOPActionProxy::processAction( const QCString &, const QCString &fun, con
if ( fun == "isPlugged()" )
{
replyType = "bool";
- QDataStream reply( replyData, IO_WriteOnly );
+ TQDataStream reply( replyData, IO_WriteOnly );
reply << (Q_INT8)action->isPlugged();
return true;
}
if ( fun == "functions()" )
{
- QValueList<QCString> res;
+ TQValueList<TQCString> res;
res << "QCStringList functions()";
res << "void activate()";
res << "bool isPlugged()";
@@ -146,7 +146,7 @@ bool KDCOPActionProxy::processAction( const QCString &, const QCString &fun, con
res += KDCOPPropertyProxy::functions( action );
replyType = "QCStringList";
- QDataStream reply( replyData, IO_WriteOnly );
+ TQDataStream reply( replyData, IO_WriteOnly );
reply << res;
return true;
}