Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
alo.remove("some text"); QTextStream stream(&alo); QString Model = stream.readLine(); AddLog("some text " + Model); QFile file2("path"+Model+".file extention"); if(file2.exists()) { QFile defile("path") ; if(decryptfiles(false,file2,defile)) { } }
Hi,
You are trying to copy a QFile object which is not possible since in inherits from QObject.
My guess is that decryptfiles parameters is what triggers the error message you see.
@SGaist Thank you very much The Problem Is Solved As you saw