From e854296fa3301e16885ff959bb083b0f18919c44 Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Mon, 19 Dec 2005 01:52:12 +0000 Subject: remove some debug prints this commit breaks enigma2... sorry... the automatic scan throws a "KeyError" but the serviceselection looks nicer now :) --- lib/dvb/db.cpp | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'lib/dvb/db.cpp') diff --git a/lib/dvb/db.cpp b/lib/dvb/db.cpp index 17196f05..a3a98c04 100644 --- a/lib/dvb/db.cpp +++ b/lib/dvb/db.cpp @@ -857,7 +857,11 @@ eDVBDBSatellitesQuery::eDVBDBSatellitesQuery(eDVBDB *db, const eServiceReference char buf[64]; // TODO get real satellite name.. // but i dont like to parse the satellites.xml here.. and in the python part - snprintf(buf, 64, "Services - %d", dvbnamespace>>16); + int tpos = dvbnamespace>>16; + if (tpos > 1800) // west + snprintf(buf, 64, "Services (%3.1fW)", (0 - (tpos - 3600)) / 10.0); + else + snprintf(buf, 64, "Services (%3.1fE)", tpos / 10.0); ref.name=buf; snprintf(buf, 64, "(satellitePosition == %d) && ", dvbnamespace>>16); ref.path=buf+source.path; @@ -873,7 +877,10 @@ eDVBDBSatellitesQuery::eDVBDBSatellitesQuery(eDVBDB *db, const eServiceReference ref.path.erase(pos+5); ref.path+="PROVIDERS ORDER BY name"; // eDebug("ref.path now %s", ref.path.c_str()); - snprintf(buf, 64, "Providers - %d", dvbnamespace>>16); + if (tpos > 1800) // west + snprintf(buf, 64, "Providers (%3.1fW)", (0 - (tpos - 3600)) / 10.0); + else + snprintf(buf, 64, "Providers (%3.1fE)", tpos / 10.0); ref.name=buf; m_list.push_back(ref); } -- cgit v1.2.3