From f5d989c5542657171f4742def1cb9faa31961560 Mon Sep 17 00:00:00 2001 From: Rodrigo Braz Monteiro Date: Mon, 1 May 2006 20:00:59 +0000 Subject: [PATCH] Fixed building of automation Originally committed to SVN as r359. --- core/automation_filter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/automation_filter.cpp b/core/automation_filter.cpp index d46b4c82e..610d08433 100644 --- a/core/automation_filter.cpp +++ b/core/automation_filter.cpp @@ -149,9 +149,9 @@ AssAutomationFilter::AssAutomationFilter(AutomationScript *a_script) { Register(wxString::Format(_T("Automation: %s"), script->name.c_str()), 2000); if (script->description.IsEmpty()) { - Description = wxString::Format(_T("%s\r\n(This Automation script has not provided a description.)"), script->name.c_str()); + description = wxString::Format(_T("%s\r\n(This Automation script has not provided a description.)"), script->name.c_str()); } else { - Description = script->description; + description = script->description; } automation_filter_list.push_back(this); }