From 9300f9e576b0f014f2f18e9204d8bad7e2cc68a9 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 9 Oct 2023 16:28:13 +0900 Subject: Removed unsupported qtint*/qtuint* types Signed-off-by: Michele Calgaro --- dcop/dcopserver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dcop/dcopserver.cpp') diff --git a/dcop/dcopserver.cpp b/dcop/dcopserver.cpp index ec6086f09..a565df405 100644 --- a/dcop/dcopserver.cpp +++ b/dcop/dcopserver.cpp @@ -1618,7 +1618,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 = TQMIN( (qint64)1024, f.size() ); // protection against a huge file + int size = TQMIN( (long)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