diff options
Diffstat (limited to 'tdenewstuff/security.cpp')
-rw-r--r-- | tdenewstuff/security.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdenewstuff/security.cpp b/tdenewstuff/security.cpp index 3bca16166..c6f8a4c3b 100644 --- a/tdenewstuff/security.cpp +++ b/tdenewstuff/security.cpp @@ -226,7 +226,7 @@ void Security::slotCheckValidity() if (file.open(IO_ReadOnly)) { context.reset(); - context.update(TQT_TQIODEVICE_OBJECT(file)); + context.update(file); md5sum = context.hexDigest(); file.close(); } @@ -298,7 +298,7 @@ void Security::slotSignFile() if (file.open(IO_ReadOnly)) { context.reset(); - context.update(TQT_TQIODEVICE_OBJECT(file)); + context.update(file); md5sum = context.hexDigest(); file.close(); } |