qiodevice.patch 648 B

123456789101112131415161718192021222324
  1. From: Hrvoje Senjan <hrvoje.senjan@gmail.com>
  2. Date: Sat, 17 Jan 2015 19:12:18 +0000
  3. Subject: Add missing QIODevice include
  4. X-Git-Url: http://quickgit.kde.org/?p=qca.git&a=commitdiff&h=7207e6285e932044cd66d49d0dc484666cfb0092
  5. ---
  6. Add missing QIODevice include
  7. Fixes build with Qt 5.5
  8. ---
  9. --- a/include/QtCrypto/qca_basic.h
  10. +++ b/include/QtCrypto/qca_basic.h
  11. @@ -35,6 +35,8 @@
  12. #include "qca_core.h"
  13. +#include <QIODevice>
  14. +
  15. // Qt5 comes with QStringLiteral for wrapping string literals, which Qt4 does
  16. // not have. It is needed if the headers are built with QT_NO_CAST_FROM_ASCII.
  17. // Defining it here as QString::fromUtf8 for convenience.