summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2004-10-08 20:04:18 (UTC)
committer llornkcor <llornkcor>2004-10-08 20:04:18 (UTC)
commit0c3966672847b3b81c96c942727178368ac70e65 (patch) (unidiff)
treeca18241ed0b75745c9498e0d67412a6edf660a7a
parent4e884ee63f16d1367ff7b854dbe5b50a6871c008 (diff)
downloadopie-0c3966672847b3b81c96c942727178368ac70e65.zip
opie-0c3966672847b3b81c96c942727178368ac70e65.tar.gz
opie-0c3966672847b3b81c96c942727178368ac70e65.tar.bz2
remove inadvertant output
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/serverapp.cpp2
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
@@ -75,33 +75,33 @@ int QCopKeyRegister::keyCode() const
75} 75}
76 76
77QCString QCopKeyRegister::channel() const 77QCString QCopKeyRegister::channel() const
78{ 78{
79 return m_channel; 79 return m_channel;
80} 80}
81 81
82QCString QCopKeyRegister::message() const 82QCString QCopKeyRegister::message() const
83{ 83{
84 return m_message; 84 return m_message;
85} 85}
86 86
87bool QCopKeyRegister::send() 87bool QCopKeyRegister::send()
88{ 88{
89 if (m_channel.isNull() ) 89 if (m_channel.isNull() )
90 return false; 90 return false;
91qDebug("Send Message: "+m_channel+" "+m_message); 91
92 QCopEnvelope e( m_channel, m_message ); 92 QCopEnvelope e( m_channel, m_message );
93 93
94 return true; 94 return true;
95} 95}
96 96
97//--------------------------------------------------------------------------- 97//---------------------------------------------------------------------------
98 98
99/* 99/*
100 Priority is number of alerts that are needed to pop up 100 Priority is number of alerts that are needed to pop up
101 alert. 101 alert.
102 */ 102 */
103class DesktopPowerAlerter : public QMessageBox 103class DesktopPowerAlerter : public QMessageBox
104{ 104{
105 Q_OBJECT 105 Q_OBJECT
106public: 106public:
107 DesktopPowerAlerter( QWidget *parent, const char *name = 0 ) 107 DesktopPowerAlerter( QWidget *parent, const char *name = 0 )