summaryrefslogtreecommitdiffstats
path: root/examples/bluetooth/btfiletransfer
diff options
context:
space:
mode:
authorFabian Bumberger <fbumberger@rim.com>2013-07-30 17:44:28 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-08-01 11:27:52 +0200
commita7d01a4f0d5bdd56749e674e71d32caaa3a065b3 (patch)
treebdeda051d19bff1dc0d7e23d3930a490309e884b /examples/bluetooth/btfiletransfer
parent7b1622fc3f00b64b608670c8d3691b0e3fbb71bc (diff)
Clean up for OPP
- Remove Operation enum, because we only support put requests - Add the request to the transfer reply - Move startOPP to the private area Task-number: QTBUG-32726 Change-Id: If7dae547326cb74dcdd6449c08dc0d91fb8a78b2 Reviewed-by: Alex Blasche <alexander.blasche@digia.com>
Diffstat (limited to 'examples/bluetooth/btfiletransfer')
-rw-r--r--examples/bluetooth/btfiletransfer/remoteselector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/bluetooth/btfiletransfer/remoteselector.cpp b/examples/bluetooth/btfiletransfer/remoteselector.cpp
index 423e3e55..f75a70fe 100644
--- a/examples/bluetooth/btfiletransfer/remoteselector.cpp
+++ b/examples/bluetooth/btfiletransfer/remoteselector.cpp
@@ -228,7 +228,7 @@ void RemoteSelector::on_sendButton_clicked()
return;
}
- connect(reply, SIGNAL(uploadProgress(qint64,qint64)), p, SLOT(uploadProgress(qint64,qint64)));
+ connect(reply, SIGNAL(transferProgress(qint64,qint64)), p, SLOT(uploadProgress(qint64,qint64)));
connect(reply, SIGNAL(finished(QBluetoothTransferReply*)), p, SLOT(finished(QBluetoothTransferReply*)));
connect(p, SIGNAL(rejected()), reply, SLOT(abort()));
}