AutomationEditor: fixed window title

As of commit 91f3db7b window title of automation editor has been in
uppercase letters which is wrong.
This commit is contained in:
Tobias Doerffel
2009-04-17 12:24:54 +02:00
parent 6f0388be7c
commit d4680ba21d

View File

@@ -387,7 +387,7 @@ void automationEditor::setCurrentPattern( automationPattern * _new_pattern )
if( validPattern() == false )
{
setWindowTitle( tr( "AUTOMATION EDITOR - no pattern" ) );
setWindowTitle( tr( "Automation Editor - no pattern" ) );
m_minLevel = m_maxLevel = m_scrollLevel = 0;
m_step = 1;
resizeEvent( NULL );
@@ -403,7 +403,7 @@ void automationEditor::setCurrentPattern( automationPattern * _new_pattern )
// of levels and so on...)
resizeEvent( NULL );
setWindowTitle( tr( "AUTOMATION EDITOR - %1" ).arg(
setWindowTitle( tr( "Automation Editor - %1" ).arg(
m_pattern->name() ) );
update();