aboutsummaryrefslogtreecommitdiff
path: root/lib/service/servicedvb.cpp
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-09-29 23:06:02 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-09-29 23:06:02 +0000
commitfc233e3a96e68514165781859afc94a2bb33e9e9 (patch)
tree83aa8cbf23e063dbb4d6d145f74c6534dfec6bca /lib/service/servicedvb.cpp
parent75cfae3a16a0ce7f806871d11c53d9e50fbfacd1 (diff)
downloadenigma2-fc233e3a96e68514165781859afc94a2bb33e9e9.tar.gz
enigma2-fc233e3a96e68514165781859afc94a2bb33e9e9.zip
consistently use iServiceHandler instead of eServiceCenter to use properly wrapped interface
Diffstat (limited to 'lib/service/servicedvb.cpp')
-rw-r--r--lib/service/servicedvb.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/service/servicedvb.cpp b/lib/service/servicedvb.cpp
index 64e62cac..ca08d481 100644
--- a/lib/service/servicedvb.cpp
+++ b/lib/service/servicedvb.cpp
@@ -109,7 +109,7 @@ eServiceFactoryDVB::eServiceFactoryDVB()
{
ePtr<eServiceCenter> sc;
- eServiceCenter::getInstance(sc);
+ eServiceCenter::getPrivInstance(sc);
if (sc)
sc->addServiceFactory(eServiceFactoryDVB::id, this);
}
@@ -118,7 +118,7 @@ eServiceFactoryDVB::~eServiceFactoryDVB()
{
ePtr<eServiceCenter> sc;
- eServiceCenter::getInstance(sc);
+ eServiceCenter::getPrivInstance(sc);
if (sc)
sc->removeServiceFactory(eServiceFactoryDVB::id);
}