1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 11:20:22 +02:00

style & capitalization fixes

This commit is contained in:
Stefan Derkits
2013-01-09 15:34:44 +01:00
parent 7c64dd8c6b
commit 41c688aa68

View File

@@ -906,9 +906,9 @@ Tomahawk::EchonestControl::calculateSummary()
Q_ASSERT( qobject_cast< QComboBox* >( m_match.data() ) ); Q_ASSERT( qobject_cast< QComboBox* >( m_match.data() ) );
QString isOrIsNot = qobject_cast< QComboBox* >( m_match.data() )->currentText().toLower(); QString isOrIsNot = qobject_cast< QComboBox* >( m_match.data() )->currentText().toLower();
if ( isOrIsNot == "is" ) if ( isOrIsNot == "is" )
summary = tr( "where Song Type is %1" ).arg( text ); summary = tr( "where song type is %1" ).arg( text );
else else
summary = tr( "where Song Type is not %1" ).arg( text ); summary = tr( "where song type is not %1" ).arg( text );
} }
m_summary = summary; m_summary = summary;