diff options
author | Michele Calgaro <[email protected]> | 2023-07-12 11:34:47 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-12 11:34:47 +0900 |
commit | 8dac8f1a52cf3a2983af451aff69ca268cfbd6d7 (patch) | |
tree | 0e635c9ea1f00598fe892d77e026cbeb96eff8ef /kompare/tests/diff/normalm.diff | |
parent | 3523578cf170d9e98e2c0c5b2f3b6f7de4318a03 (diff) | |
download | tdesdk-8dac8f1a52cf3a2983af451aff69ca268cfbd6d7.tar.gz tdesdk-8dac8f1a52cf3a2983af451aff69ca268cfbd6d7.zip |
Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kompare/tests/diff/normalm.diff')
-rw-r--r-- | kompare/tests/diff/normalm.diff | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kompare/tests/diff/normalm.diff b/kompare/tests/diff/normalm.diff index 38676f0e..0344923a 100644 --- a/kompare/tests/diff/normalm.diff +++ b/kompare/tests/diff/normalm.diff @@ -639,7 +639,7 @@ diff -r dcop/client/marshall.cpp dcop2/client/marshall.cpp --- > void marshall( QDataStream &arg, QCStringList args, uint &i, QString type ) 247,317c247,256 -< if (type == TQSTRINGLIST_OBJECT_NAME_STRING) +< if (type == "TQStringList") < type = "QValueList<QString>"; < if (type == "QCStringList") < type = "QValueList<QCString>"; @@ -672,13 +672,13 @@ diff -r dcop/client/marshall.cpp dcop2/client/marshall.cpp < arg << s.toDouble(); < else if ( type == "bool" ) < arg << mkBool( s ); -< else if ( type == TQSTRING_OBJECT_NAME_STRING ) +< else if ( type == "TQString" ) < arg << s; < else if ( type == "QCString" ) < arg << QCString( argv[i] ); < else if ( type == "QColor" ) < arg << mkColor( s ); -< else if ( type == TQPOINT_OBJECT_NAME_STRING ) +< else if ( type == "TQPoint" ) < arg << mkPoint( s ); < else if ( type == "QSize" ) < arg << mkSize( s ); @@ -711,7 +711,7 @@ diff -r dcop/client/marshall.cpp dcop2/client/marshall.cpp < QByteArray dummy_data; < QDataStream dummy_arg(dummy_data, IO_WriteOnly); --- -> if (type == TQSTRINGLIST_OBJECT_NAME_STRING) +> if (type == "TQStringList") > type = "QValueList<QString>"; > if (type == "QCStringList") > type = "QValueList<QCString>"; @@ -773,13 +773,13 @@ diff -r dcop/client/marshall.cpp dcop2/client/marshall.cpp > arg << s.toDouble(); > else if ( type == "bool" ) > arg << mkBool( s ); -> else if ( type == TQSTRING_OBJECT_NAME_STRING ) +> else if ( type == "TQString" ) > arg << s; > else if ( type == "QCString" ) > arg << QCString( args[ i ] ); > else if ( type == "QColor" ) > arg << mkColor( s ); -> else if ( type == TQPOINT_OBJECT_NAME_STRING ) +> else if ( type == "TQPoint" ) > arg << mkPoint( s ); > else if ( type == "QSize" ) > arg << mkSize( s ); |