(svn r23807) -Codechange: GRFError::num_params is not needed, remove it.

This commit is contained in:
frosch
2012-01-15 17:33:35 +00:00
parent 639395d007
commit 9eebe8b1ae
4 changed files with 4 additions and 8 deletions

View File

@@ -188,8 +188,7 @@ GRFError::GRFError(const GRFError &error) :
custom_message(error.custom_message),
data(error.data),
message(error.message),
severity(error.severity),
num_params(error.num_params)
severity(error.severity)
{
if (error.custom_message != NULL) this->custom_message = strdup(error.custom_message);
if (error.data != NULL) this->data = strdup(error.data);