summaryrefslogtreecommitdiff
path: root/core/obex/obexsend.cpp
Unidiff
Diffstat (limited to 'core/obex/obexsend.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/obex/obexsend.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/obex/obexsend.cpp b/core/obex/obexsend.cpp
index 8432d16..9a30a0a 100644
--- a/core/obex/obexsend.cpp
+++ b/core/obex/obexsend.cpp
@@ -139,25 +139,25 @@ void SendWidget::slotIrSent( bool b) {
139} 139}
140void SendWidget::slotIrTry(unsigned int trI) { 140void SendWidget::slotIrTry(unsigned int trI) {
141 setReceiverStatus(m_irDaIt.key(), tr("Try %1").arg( QString::number( trI ) )); 141 setReceiverStatus(m_irDaIt.key(), tr("Try %1").arg( QString::number( trI ) ));
142} 142}
143void SendWidget::slotStartIrda() { 143void SendWidget::slotStartIrda() {
144 if ( !m_irDa.count() ) 144 if ( !m_irDa.count() )
145 return; 145 return;
146 if ( m_irDaIt == m_irDa.end() || !receiverSelected(m_irDaIt.key())) { 146 if ( m_irDaIt == m_irDa.end() || !receiverSelected(m_irDaIt.key())) {
147 irdaStatus->setText(tr("complete.")); 147 irdaStatus->setText(tr("complete."));
148 return; 148 return;
149 } 149 }
150 setReceiverStatus( m_irDaIt.key(), tr("Start sending") ); 150 setReceiverStatus( m_irDaIt.key(), tr("Start sending") );
151 m_obex->send( m_file ); 151 m_obex->send( m_file, tr("noaddress") );
152} 152}
153 153
154void SendWidget::dispatchBt( const QCString& str, const QByteArray& ar ) { 154void SendWidget::dispatchBt( const QCString& str, const QByteArray& ar ) {
155 if ( str == "devices(QStringMap)" ) { 155 if ( str == "devices(QStringMap)" ) {
156 QDataStream stream( ar, IO_ReadOnly ); 156 QDataStream stream( ar, IO_ReadOnly );
157 QMap<QString, QString> btmap; 157 QMap<QString, QString> btmap;
158 stream >> btmap; 158 stream >> btmap;
159 slotBTDevices( btmap ); 159 slotBTDevices( btmap );
160 } 160 }
161} 161}
162void SendWidget::slotBtError( int ) { 162void SendWidget::slotBtError( int ) {
163 btStatus->setText(tr("error :(")); 163 btStatus->setText(tr("error :("));