diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-10-09 16:28:13 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-10-09 16:28:13 +0900 |
commit | 9300f9e576b0f014f2f18e9204d8bad7e2cc68a9 (patch) | |
tree | dae9fd36c359b4078c13a4f9b9deb54ae36feef7 /dcop/dcopserver.cpp | |
parent | 4c0dae60b2fbc60996fc8f4bd29ee6219b869527 (diff) | |
download | tdelibs-9300f9e576b0f014f2f18e9204d8bad7e2cc68a9.tar.gz tdelibs-9300f9e576b0f014f2f18e9204d8bad7e2cc68a9.zip |
Removed unsupported qtint*/qtuint* types
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'dcop/dcopserver.cpp')
-rw-r--r-- | dcop/dcopserver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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'; |