summaryrefslogtreecommitdiffstats
path: root/dcop/dcopclient.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-10-09 16:28:13 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-10-09 17:02:58 +0900
commit8d49342be2a800f97e338a179c3d9dfd6dac2d47 (patch)
tree89272e1a9b4e1d884acd3f376fe55e4e6ff2451a /dcop/dcopclient.cpp
parent04d353236066b9aa85f6387fa05d3d37b75a7dd2 (diff)
downloadtdelibs-8d49342be2a800f97e338a179c3d9dfd6dac2d47.tar.gz
tdelibs-8d49342be2a800f97e338a179c3d9dfd6dac2d47.zip
Removed unsupported qtint*/qtuint* types
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 9300f9e576b0f014f2f18e9204d8bad7e2cc68a9)
Diffstat (limited to 'dcop/dcopclient.cpp')
-rw-r--r--dcop/dcopclient.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/dcop/dcopclient.cpp b/dcop/dcopclient.cpp
index f5588ad3c..0aae67b7a 100644
--- a/dcop/dcopclient.cpp
+++ b/dcop/dcopclient.cpp
@@ -821,7 +821,7 @@ bool DCOPClient::attachInternal( bool registerAsAnonymous )
emit attachFailed(TQString::fromLatin1( "Could not read network connection list.\n" )+TQFile::decodeName(fName));
return false;
}
- 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 );
if ( f.readBlock( contents.data(), size ) != size )
{