From 96a33d90689a46ea58f812d76fdd2eaf93edecfa Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 19 Jan 2011 08:24:43 +0000 Subject: Additional TQt for Qt4 compilation fixes This should not affect TQt for Qt3 per usual git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1215674 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- dcop/dcopserver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dcop') diff --git a/dcop/dcopserver.cpp b/dcop/dcopserver.cpp index b8994f699..ca810f390 100644 --- a/dcop/dcopserver.cpp +++ b/dcop/dcopserver.cpp @@ -1614,7 +1614,7 @@ static bool isRunning(const TQCString &fName, bool printNetworkId = false) if (::access(fName.data(), R_OK) == 0) { TQFile f(fName); f.open(IO_ReadOnly); - int size = QMIN( (qint64)1024, f.size() ); // protection against a huge file + int size = TQMIN( (qint64)1024, f.size() ); // protection against a huge file TQCString contents( size+1 ); bool ok = f.readBlock( contents.data(), size ) == size; contents[size] = '\0'; -- cgit v1.2.1