File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ find_path(BOOST_OPTIONAL_DIR NAMES boost/optional.hpp)
122122if (BOOST_OPTIONAL_DIR)
123123 message (STATUS "Found boost/optional.hpp in ${BOOST_OPTIONAL_DIR} " )
124124 include_directories (${BOOST_OPTIONAL_DIR} )
125- add_definitions (-DBOOST_OPTIONAL_FOUND )# I'd really prefer using configure_file but this is more compatible with qmake
125+ add_definitions (-DBOOST_OPTIONAL_FOUND )
126126endif ()
127127
128128set (CMAKE_INCLUDE_CURRENT_DIR TRUE )
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ class KDSOAPSERVER_EXPORT KDSoapServerObjectInterface
6969 virtual ~KDSoapServerObjectInterface ();
7070
7171 KDSoapServerObjectInterface (const KDSoapServerObjectInterface &) = delete ;
72- KDSoapServerObjectInterface &operator =(const KDSoapServerObjectInterface &) = delete ;
72+ KDSoapServerObjectInterface &operator =(const KDSoapServerObjectInterface &) = delete ;
7373
7474 /* *
7575 * Handle \p request and return \p response.
Original file line number Diff line number Diff line change @@ -430,13 +430,13 @@ bool KDSoapServerSocket::handleFileDownload(KDSoapServerObjectInterface *serverO
430430 Q_UNUSED (written);
431431
432432 char block[4096 ] = {0 };
433- // qint64 totalRead = 0;
433+ // qint64 totalRead = 0;
434434 while (!device->atEnd ()) {
435435 const qint64 in = device->read (block, sizeof (block));
436436 if (in <= 0 ) {
437437 break ;
438438 }
439- // totalRead += in;
439+ // totalRead += in;
440440 if (in != write (block, in)) {
441441 // error = true;
442442 break ;
You can’t perform that action at this time.
0 commit comments