File diff r25689:899cf7c4e76b → r25690:9d9403185243
src/network/network_content_gui.h
Show inline comments
 
@@ -19,14 +19,14 @@ class BaseNetworkContentDownloadStatusWi
 
protected:
 
	uint total_bytes;      ///< Number of bytes to download
 
	uint downloaded_bytes; ///< Number of bytes downloaded
 
	uint total_files;      ///< Number of files to download
 
	uint downloaded_files; ///< Number of files downloaded
 

	
 
	uint32 cur_id; ///< The current ID of the downloaded file
 
	char name[48]; ///< The current name of the downloaded file
 
	uint32 cur_id;    ///< The current ID of the downloaded file
 
	std::string name; ///< The current name of the downloaded file
 

	
 
public:
 
	/**
 
	 * Create the window with the given description.
 
	 * @param desc  The description of the window.
 
	 */