forked from qt-creator/qt-creator
		
	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:
		@@ -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);
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user