File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ find_path(BOOST_OPTIONAL_DIR NAMES boost/optional.hpp)
122
122
if (BOOST_OPTIONAL_DIR)
123
123
message (STATUS "Found boost/optional.hpp in ${BOOST_OPTIONAL_DIR} " )
124
124
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)
126
126
endif ()
127
127
128
128
set (CMAKE_INCLUDE_CURRENT_DIR TRUE )
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ class KDSOAPSERVER_EXPORT KDSoapServerObjectInterface
69
69
virtual ~KDSoapServerObjectInterface ();
70
70
71
71
KDSoapServerObjectInterface (const KDSoapServerObjectInterface &) = delete ;
72
- KDSoapServerObjectInterface &operator =(const KDSoapServerObjectInterface &) = delete ;
72
+ KDSoapServerObjectInterface &operator =(const KDSoapServerObjectInterface &) = delete ;
73
73
74
74
/* *
75
75
* 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
430
430
Q_UNUSED (written);
431
431
432
432
char block[4096 ] = {0 };
433
- // qint64 totalRead = 0;
433
+ // qint64 totalRead = 0;
434
434
while (!device->atEnd ()) {
435
435
const qint64 in = device->read (block, sizeof (block));
436
436
if (in <= 0 ) {
437
437
break ;
438
438
}
439
- // totalRead += in;
439
+ // totalRead += in;
440
440
if (in != write (block, in)) {
441
441
// error = true;
442
442
break ;
You can’t perform that action at this time.
0 commit comments