diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2005-10-15 23:55:20 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2005-10-15 23:55:20 +0000 |
| commit | dd935678caed30ac21aa74826d8fbfca5f31a81c (patch) | |
| tree | c263e16c63bc0a68d877feaa34ff7e27f49a6f58 /lib | |
| parent | 35278519b9b44c9543126e06841b1cfb8510eb82 (diff) | |
| download | enigma2-dd935678caed30ac21aa74826d8fbfca5f31a81c.tar.gz enigma2-dd935678caed30ac21aa74826d8fbfca5f31a81c.zip | |
removed not only one but FOUR annoying debug messages
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/driver/rcinput.cpp | 2 | ||||
| -rw-r--r-- | lib/gui/ewidgetdesktop.cpp | 2 | ||||
| -rw-r--r-- | lib/python/enigma_python.i | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/driver/rcinput.cpp b/lib/driver/rcinput.cpp index ad2d3f61..a5b1c719 100644 --- a/lib/driver/rcinput.cpp +++ b/lib/driver/rcinput.cpp @@ -16,7 +16,7 @@ void eRCDeviceInputDev::handleCode(int rccode) struct input_event *ev = (struct input_event *)rccode; if (ev->type!=EV_KEY) return; - eDebug("%x %x %x", ev->value, ev->code, ev->type); +// eDebug("%x %x %x", ev->value, ev->code, ev->type); switch (ev->value) { case 0: diff --git a/lib/gui/ewidgetdesktop.cpp b/lib/gui/ewidgetdesktop.cpp index fb0f39dd..afe1995c 100644 --- a/lib/gui/ewidgetdesktop.cpp +++ b/lib/gui/ewidgetdesktop.cpp @@ -272,7 +272,7 @@ void eWidgetDesktop::makeCompatiblePixmap(gPixmap &pm) if (m_comp_mode != cmImmediate) return; - eDebug("widgetDesktop: make compatible pixmap of %p\n", &pm); +// eDebug("widgetDesktop: make compatible pixmap of %p", &pm); if (!m_screen.m_dc) { eWarning("eWidgetDesktop: no DC to make pixmap compatible with!"); diff --git a/lib/python/enigma_python.i b/lib/python/enigma_python.i index 8b918bf0..a0c9d528 100644 --- a/lib/python/enigma_python.i +++ b/lib/python/enigma_python.i @@ -80,8 +80,8 @@ extern void setLCDClock(const char *c); extern PSignal1<void,int> &keyPressedSignal(); %} -%feature("ref") iObject "$this->AddRef(); eDebug(\"AddRef (%s:%d)!\", __FILE__, __LINE__); " -%feature("unref") iObject "$this->Release(); eDebug(\"Release! %s:%d\", __FILE__, __LINE__); " +%feature("ref") iObject "$this->AddRef(); /* eDebug(\"AddRef (%s:%d)!\", __FILE__, __LINE__); */ " +%feature("unref") iObject "$this->Release(); /* eDebug(\"Release! %s:%d\", __FILE__, __LINE__); */ " /* this magic allows smartpointer to be used as OUTPUT arguments, i.e. call-by-reference-styled return value. */ |
