summaryrefslogtreecommitdiffstats
path: root/kompare/tests/diff/edm.diff
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-25 20:06:11 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-25 20:06:11 +0900
commit0ffe839d6e363933ed4d9d212b6fd325a6fc3225 (patch)
tree3e607e94c1db1d54bcacd998df14ff84fc453db2 /kompare/tests/diff/edm.diff
parent92ad06c495d06658f03fc368d82dce7f1d268540 (diff)
downloadtdesdk-0ffe839d6e363933ed4d9d212b6fd325a6fc3225.tar.gz
tdesdk-0ffe839d6e363933ed4d9d212b6fd325a6fc3225.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kompare/tests/diff/edm.diff')
-rw-r--r--kompare/tests/diff/edm.diff36
1 files changed, 18 insertions, 18 deletions
diff --git a/kompare/tests/diff/edm.diff b/kompare/tests/diff/edm.diff
index 45d559cc..affecec6 100644
--- a/kompare/tests/diff/edm.diff
+++ b/kompare/tests/diff/edm.diff
@@ -8,9 +8,9 @@ int main( int argc, char** argv )
{
bool readStdin = false;
int numOptions = 0;
- QString user;
+ TQString user;
Session session = DefaultSession;
- QString sessionName;
+ TQString sessionName;
// Scan for command-line options first
for( int pos = 1 ; pos <= argc - 1 ; pos++ )
@@ -26,7 +26,7 @@ int main( int argc, char** argv )
{
if( pos <= argc - 2 )
{
- user = QString::fromLocal8Bit( argv[ pos + 1] );
+ user = TQString::fromLocal8Bit( argv[ pos + 1] );
numOptions +=2;
pos++;
}
@@ -113,8 +113,8 @@ int main( int argc, char** argv )
( getenv( "ICEAUTHORITY" ) == 0 || getenv( "DISPLAY" ) == 0 ) ) )
{
// Check for ICE authority file and if the file can be read by us
- QString home = it.data();
- QString iceFile = it.data() + "/.ICEauthority";
+ TQString home = it.data();
+ TQString iceFile = it.data() + "/.ICEauthority";
QFileInfo fi( iceFile );
if( iceFile.isEmpty() )
{
@@ -163,7 +163,7 @@ int main( int argc, char** argv )
{
if( !presetDCOPServer && !users.isEmpty() )
{
- QString dcopFile = it.data() + "/" + *sIt;
+ TQString dcopFile = it.data() + "/" + *sIt;
QFile f( dcopFile );
if( !f.open( IO_ReadOnly ) )
{
@@ -274,7 +274,7 @@ int main( int argc, char** argv )
QStringList sessions;
bool presetDCOPServer = false;
// char *dcopStr = 0L;
- QString dcopServer;
+ TQString dcopServer;
for( it = users.begin(); it != users.end() || firstRun; it++ )
{
@@ -375,7 +375,7 @@ int main( int argc, char** argv )
* Do the actual DCOP call
*/
void runDCOP( QCStringList args, UserList users, Session session,
- const QString sessionName, bool readStdin )
+ const TQString sessionName, bool readStdin )
{
.
279,281c
@@ -386,7 +386,7 @@ void runDCOP( QCStringList args, UserList users, Session session,
* Return a list of available DCOP sessions for the specified user
* An empty list means no sessions are available, or an error occurred.
*/
-QStringList dcopSessionList( const QString &user, const QString &home )
+QStringList dcopSessionList( const TQString &user, const TQString &home )
{
if( home.isEmpty() )
{
@@ -517,7 +517,7 @@ enum Session { DefaultSession = 0, AllSessions, QuerySessions, CustomSession };
.
33a
-typedef QMap<QString, QString> UserList;
+typedef QMap<TQString, TQString> UserList;
.
28,30c
@@ -577,7 +577,7 @@ diff -er dcop/client/marshall.cpp dcop2/client/marshall.cpp
tqWarning("List end-delimiter '%s' not found.", delim.latin1());
exit(1);
}
- if( QString::fromLocal8Bit( args[ j ] ) == delim )
+ if( TQString::fromLocal8Bit( args[ j ] ) == delim )
break;
marshall( dummy_arg, args, j, type );
count++;
@@ -590,7 +590,7 @@ diff -er dcop/client/marshall.cpp dcop2/client/marshall.cpp
tqWarning("List end-delimiter '%s' not found.", delim.latin1());
exit(1);
}
- if( QString::fromLocal8Bit( args[ i ] ) == delim )
+ if( TQString::fromLocal8Bit( args[ i ] ) == delim )
break;
marshall( arg, args, i, type );
}
@@ -627,7 +627,7 @@ diff -er dcop/client/marshall.cpp dcop2/client/marshall.cpp
arg << s;
else if ( type == "QCString" )
arg << QCString( args[ i ] );
- else if ( type == "QColor" )
+ else if ( type == "TQColor" )
arg << mkColor( s );
else if ( type == "TQPoint" )
arg << mkPoint( s );
@@ -646,14 +646,14 @@ diff -er dcop/client/marshall.cpp dcop2/client/marshall.cpp
arg << QVariant( mkSize( s.mid(6, s.length()-7) ) );
else if ( s.left( 6 ) == "QRect(" )
arg << QVariant( mkRect( s.mid(6, s.length()-7) ) );
- else if ( s.left( 7 ) == "QColor(" )
+ else if ( s.left( 7 ) == "TQColor(" )
arg << QVariant( mkColor( s.mid(7, s.length()-8) ) );
else
arg << QVariant( s );
} else if ( type.startsWith("QValueList<")) {
type = type.mid(11, type.length() - 12);
QStringList list;
- QString delim = s;
+ TQString delim = s;
if (delim == "[")
delim = "]";
if (delim == "(")
@@ -661,7 +661,7 @@ diff -er dcop/client/marshall.cpp dcop2/client/marshall.cpp
.
247,317c
if (type == "TQStringList")
- type = "QValueList<QString>";
+ type = "QValueList<TQString>";
if (type == "QCStringList")
type = "QValueList<QCString>";
if( i > args.count() )
@@ -669,8 +669,8 @@ diff -er dcop/client/marshall.cpp dcop2/client/marshall.cpp
tqWarning("Not enough arguments.");
exit(1);
}
- QString s = QString::fromLocal8Bit( args[ i ] );
+ TQString s = TQString::fromLocal8Bit( args[ i ] );
.
245c
-void marshall( QDataStream &arg, QCStringList args, uint &i, QString type )
+void marshall( QDataStream &arg, QCStringList args, uint &i, TQString type )
.