author | llornkcor <llornkcor> | 2004-10-08 20:04:18 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2004-10-08 20:04:18 (UTC) |
commit | 0c3966672847b3b81c96c942727178368ac70e65 (patch) (side-by-side diff) | |
tree | ca18241ed0b75745c9498e0d67412a6edf660a7a | |
parent | 4e884ee63f16d1367ff7b854dbe5b50a6871c008 (diff) | |
download | opie-0c3966672847b3b81c96c942727178368ac70e65.zip opie-0c3966672847b3b81c96c942727178368ac70e65.tar.gz opie-0c3966672847b3b81c96c942727178368ac70e65.tar.bz2 |
remove inadvertant output
-rw-r--r-- | core/launcher/serverapp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/launcher/serverapp.cpp b/core/launcher/serverapp.cpp index 64c97d4..dc1f2c7 100644 --- a/core/launcher/serverapp.cpp +++ b/core/launcher/serverapp.cpp @@ -59,65 +59,65 @@ static int loggedin=0; QCopKeyRegister::QCopKeyRegister() : m_keyCode( 0 ) { } QCopKeyRegister::QCopKeyRegister( int k, const QCString& c, const QCString& m ) :m_keyCode( k ), m_channel( c ), m_message( m ) { } int QCopKeyRegister::keyCode() const { return m_keyCode; } QCString QCopKeyRegister::channel() const { return m_channel; } QCString QCopKeyRegister::message() const { return m_message; } bool QCopKeyRegister::send() { if (m_channel.isNull() ) return false; -qDebug("Send Message: "+m_channel+" "+m_message); + QCopEnvelope e( m_channel, m_message ); return true; } //--------------------------------------------------------------------------- /* Priority is number of alerts that are needed to pop up alert. */ class DesktopPowerAlerter : public QMessageBox { Q_OBJECT public: DesktopPowerAlerter( QWidget *parent, const char *name = 0 ) : QMessageBox( tr("Battery Status"), tr("Low Battery"), QMessageBox::Critical, QMessageBox::Ok | QMessageBox::Default, QMessageBox::NoButton, QMessageBox::NoButton, parent, name, FALSE ) { currentPriority = INT_MAX; alertCount = 0; } void alert( const QString &text, int priority ); void hideEvent( QHideEvent * ); private: int currentPriority; int alertCount; }; |