summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/obexdialog.cpp
Side-by-side diff
Diffstat (limited to 'noncore/net/opietooth/manager/obexdialog.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/obexdialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/net/opietooth/manager/obexdialog.cpp b/noncore/net/opietooth/manager/obexdialog.cpp
index d3fdd14..8d7b593 100644
--- a/noncore/net/opietooth/manager/obexdialog.cpp
+++ b/noncore/net/opietooth/manager/obexdialog.cpp
@@ -100,26 +100,26 @@ void ObexDialog::sendData() {
return;
obexSend->clearArguments();
// vom popupmenu beziehen
if ( !modifiedName.isEmpty() ) {
*obexSend << execName << "--timeo 30" << m_device << fileURL << modifiedName;
} else {
*obexSend << execName << "--timeo 30" << m_device << fileURL << file;
}
obexSend->setUseShell(true);
if (!obexSend->start(OProcess::NotifyOnExit, OProcess::All) ) {
statLine->setText( tr("Error: couln't start process") );
}
- else
- statLine->setText( tr("Sending") );
+ else
+ statLine->setText( tr("Sending") );
}
void ObexDialog::slotPushOut(OProcess*, char* buf, int len) {
QCString str(buf, len);
status->append(str);
}
void ObexDialog::slotPushErr(OProcess*, char* buf, int len) {
QCString str(buf, len);
status->append(str);
}