Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » Developing U++ » UppHub » Control4U to be updated
Control4U to be updated [message #44844] Tue, 07 July 2015 22:34 Go to previous message
Sgifan is currently offline  Sgifan
Messages: 37
Registered: February 2010
Location: France
Member
Control4U does not compile anymore

it is a trivial fix were FD_ZERO must be replaced by FD_ZEROS

void VLC_Demo::UpdateInfo() {
	if (!player.IsLoaded()) {
		offline = "ActiveX or program not available";	
		return;
	} else
		offline = "";
	int t = player.GetTime();
	if (t == -1)
		time <<= "-";	
	else
		time <<= FormatDouble(t/1000., 2, FD_ZERO); ==> must be FD_ZEROS
	int l = player.GetLength();
	if (l == -1)
		length = "-";	
	else
		length = FormatDouble(l/1000., 2, FD_ZERO); ==> must be FD_ZEROS
}
 
Read Message
Read Message
Previous Topic: Functions4U_Demo does not build in Rel.8389 (UBUNTU 14.04)
Next Topic: Compiling Error with SVN 8672
Goto Forum:
  


Current Time: Fri Apr 26 22:45:41 CEST 2024

Total time taken to generate the page: 0.04762 seconds