Tomboy.NoteRecentChanges.UpdateMatchNoteCount C# (CSharp) Method

UpdateMatchNoteCount() private method

private UpdateMatchNoteCount ( int matches ) : void
matches int
return void
		void UpdateMatchNoteCount (int matches)
		{
			string status = string.Format (
					Catalog.GetPluralString ("Matches: {0} note",
								 "Matches: {0} notes",
								 matches),
					matches);
			status_bar.Pop (0);
			status_bar.Push (0, status);
		}