summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/dialer.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-console/dialer.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/dialer.cpp14
1 files changed, 1 insertions, 13 deletions
diff --git a/noncore/apps/opie-console/dialer.cpp b/noncore/apps/opie-console/dialer.cpp
index 7010594..8883b83 100644
--- a/noncore/apps/opie-console/dialer.cpp
+++ b/noncore/apps/opie-console/dialer.cpp
@@ -3,6 +3,2 @@
-/* OPIE */
-#include <opie2/odebug.h>
-using namespace Opie::Core;
-
/* QT */
@@ -111,3 +107,2 @@ void Dialer::reset()
{
- owarn << "reset" << oendl;
switchState(state_cancel);
@@ -143,3 +138,2 @@ void Dialer::trydial(const QString& number)
{
- owarn << "TryDial:" << number.latin1() << "" << oendl;
if(state != state_cancel) switchState(state_preinit);
@@ -147,3 +141,2 @@ void Dialer::trydial(const QString& number)
{
- owarn << "HangupString " << m_profile.readEntry("HangupString") << oendl;
send(m_profile.readEntry("HangupString", MODEM_DEFAULT_HANGUP_STRING ) + "\r");
@@ -154,3 +147,2 @@ void Dialer::trydial(const QString& number)
switchState(state_init);
-// owarn << "Init String " + m_profile.readEntry("InitString") << oendl;
send(m_profile.readEntry("InitString",MODEM_DEFAULT_INIT_STRING ) + "\r");
@@ -185,3 +177,2 @@ void Dialer::trydial(const QString& number)
{
- owarn << "progress" << oendl;
switchState(state_dialing);
@@ -201,3 +192,3 @@ void Dialer::trydial(const QString& number)
QObject::tr("Failure"),
- QObject::tr("Dialing the number failed."));
+ QObject::tr("<qt>Dialing the number failed.</qt>"));
slotCancel();
@@ -221,3 +212,2 @@ void Dialer::send(const QString& msg)
- owarn << "Sending: " << m.latin1() << "" << oendl;
@@ -254,3 +244,2 @@ QString Dialer::receive()
buffer[ret] = 0;
- owarn << "Got: " << buffer << "" << oendl;
buf.append(QString(buffer));
@@ -258,3 +247,2 @@ QString Dialer::receive()
{
- //owarn << "Receiving: '" << buf.latin1() << "'" << oendl;
cleanshutdown = 1;