summaryrefslogtreecommitdiffstats
path: root/dcop/client
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-15 15:08:51 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-15 15:08:51 -0600
commitfb652a2be46ce1a2081e5dde268cd9f4ebe6fdd0 (patch)
treea01fcd88aa65a77c2b2e12ba1a55851ddfe5afcc /dcop/client
parent3fbca5d9a4bd057ed5f9df138333e6c16dbdcc62 (diff)
downloadtdelibs-fb652a2be46ce1a2081e5dde268cd9f4ebe6fdd0.tar.gz
tdelibs-fb652a2be46ce1a2081e5dde268cd9f4ebe6fdd0.zip
Fix kdelibs FTBFS on native TQt3
Diffstat (limited to 'dcop/client')
-rw-r--r--dcop/client/dcop.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/dcop/client/dcop.cpp b/dcop/client/dcop.cpp
index 4086d75b3..0eafb5055 100644
--- a/dcop/client/dcop.cpp
+++ b/dcop/client/dcop.cpp
@@ -672,7 +672,7 @@ int runDCOP( QCStringList args, UserList users, Session session,
if( !success )
{
cerr_ << "ERROR: Couldn't attach to DCOP server!" << endl;
- retval = QMAX( retval, 1 );
+ retval = TQMAX( retval, 1 );
if( users.isEmpty() )
break;
else
@@ -725,7 +725,7 @@ int runDCOP( QCStringList args, UserList users, Session session,
if( !buf.isNull() )
{
int res = callFunction( app, objid, function, params );
- retval = QMAX( retval, res );
+ retval = TQMAX( retval, res );
}
}
}
@@ -734,7 +734,7 @@ int runDCOP( QCStringList args, UserList users, Session session,
// Just call function
// cout_ << "call " << app << ", " << objid << ", " << function << ", (params)" << endl;
int res = callFunction( app, objid, function, params );
- retval = QMAX( retval, res );
+ retval = TQMAX( retval, res );
}
break;
}