summaryrefslogtreecommitdiffstats
path: root/dcop/dcopidl2cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-05 23:08:54 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-05 23:08:54 +0000
commitcb4a5d685bd5a3129e1edb8bac1ee6c41939fe7b (patch)
tree644ca9e861b7b57173400a73c340b886e934c7a0 /dcop/dcopidl2cpp
parent229a34d015564ecd61be45648f15044ea3e4ec8a (diff)
downloadtdelibs-cb4a5d685bd5a3129e1edb8bac1ee6c41939fe7b.tar.gz
tdelibs-cb4a5d685bd5a3129e1edb8bac1ee6c41939fe7b.zip
TQt conversion was incomplete in the dcop/idl processors
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1159683 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'dcop/dcopidl2cpp')
-rw-r--r--dcop/dcopidl2cpp/skel.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/dcop/dcopidl2cpp/skel.cpp b/dcop/dcopidl2cpp/skel.cpp
index 9ab0c763d..5cc30de3e 100644
--- a/dcop/dcopidl2cpp/skel.cpp
+++ b/dcop/dcopidl2cpp/skel.cpp
@@ -277,7 +277,7 @@ void generateSkel( const TQString& idl, const TQString& filename, TQDomElement d
str << '\t'<< *ittypes << " " << *args_count << ";" << endl;
++ittypes;
}
- str << "\tQDataStream arg( data, IO_ReadOnly );" << endl;
+ str << "\tTQDataStream arg( data, IO_ReadOnly );" << endl;
for( args_count = args.begin(); args_count != args.end(); ++args_count ){
str << "\tif (arg.atEnd()) return false;" << endl; // Basic error checking
str << "\targ >> " << *args_count << ";" << endl;
@@ -288,7 +288,7 @@ void generateSkel( const TQString& idl, const TQString& filename, TQDomElement d
if ( funcType == "void" ) {
str << '\t' << plainFuncName << '(';
} else {
- str << "\tQDataStream _replyStream( replyData, IO_WriteOnly );" << endl;
+ str << "\tTQDataStream _replyStream( replyData, IO_WriteOnly );" << endl;
str << "\t_replyStream << " << plainFuncName << '(';
}
@@ -360,7 +360,7 @@ void generateSkel( const TQString& idl, const TQString& filename, TQDomElement d
str << "\tif (" << className << "_ftable_hiddens[i])" << endl;
str << "\t continue;" << endl;
}
- str << "\tQCString func = " << className << "_ftable[i][0];" << endl;
+ str << "\tTQCString func = " << className << "_ftable[i][0];" << endl;
str << "\tfunc += ' ';" << endl;
str << "\tfunc += " << className << "_ftable[i][2];" << endl;
str << "\tfuncs << func;" << endl;