Compile fix for Mac 10.5.8 gcc 4.0.1

Change-Id: I1dfadc781485649bbc9c5b6c952297cdea80d95b
Reviewed-by: Fawzi Mohamed <fawzi.mohamed@nokia.com>
This commit is contained in:
Jarek Kobus
2011-11-25 14:22:06 +01:00
parent 83196c2611
commit bf197d7a12
2 changed files with 9 additions and 9 deletions

View File

@@ -1227,25 +1227,25 @@ void ServiceBrowserPrivate::reconfirmService(Service::ConstPtr s)
/// (covers both add and remove)
void ServiceBrowserPrivate::serviceChanged(const Service::ConstPtr &oldService,
const Service::ConstPtr &newService,
ServiceBrowser *browser)
ZeroConf::ServiceBrowser *browser)
{
emit q->serviceChanged(oldService, newService, browser);
}
/// called when a service is added (utility method)
void ServiceBrowserPrivate::serviceAdded(const Service::ConstPtr &service, ServiceBrowser *browser)
void ServiceBrowserPrivate::serviceAdded(const Service::ConstPtr &service, ZeroConf::ServiceBrowser *browser)
{
emit q->serviceAdded(service, browser);
}
/// called when a service is removed (utility method)
void ServiceBrowserPrivate::serviceRemoved(const Service::ConstPtr &service, ServiceBrowser *browser)
void ServiceBrowserPrivate::serviceRemoved(const Service::ConstPtr &service, ZeroConf::ServiceBrowser *browser)
{
emit q->serviceRemoved(service, browser);
}
/// called when the list is updated (this might collect several serviceChanged signals together)
void ServiceBrowserPrivate::servicesUpdated(ServiceBrowser *browser)
void ServiceBrowserPrivate::servicesUpdated(ZeroConf::ServiceBrowser *browser)
{
emit q->servicesUpdated(browser);
}