Consistent semicolon use.

This is C++, not Python!
This commit is contained in:
Jason Felds
2011-02-18 20:40:51 -05:00
parent e3e6eae012
commit 00257e7995
26 changed files with 70 additions and 67 deletions
+3 -1
View File
@@ -11,7 +11,9 @@
static const float LineWidth = 400;
static const float LineHeight = 50;
/** @brief A quick way of getting a font metric. */
#define FONT( i ) THEME->GetMetric (m_sName,ssprintf("Font%i",i))
/** @brief A quick way of getting a particular string. */
#define TEXT( i ) THEME->GetString (m_sName,ssprintf("Text%i",i))
static RString g_sCustomText;
@@ -21,7 +23,7 @@ static void ChangeText( const RString &sText )
g_sCustomText = sText;
}
AutoScreenMessage( SM_ChangeText )
AutoScreenMessage( SM_ChangeText );
void ScreenTestFonts::HandleScreenMessage( const ScreenMessage SM )
{