From: Felix Domke Date: Sat, 15 Oct 2005 23:55:20 +0000 (+0000) Subject: removed not only one but FOUR annoying debug messages X-Git-Tag: 2.6.0~5451 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/dd935678caed30ac21aa74826d8fbfca5f31a81c removed not only one but FOUR annoying debug messages --- 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 &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. */