GnomeSubtitles.Ui.Component.NewlineTypeComboBox.SetSystemNewlineSuffix C# (CSharp) Method

SetSystemNewlineSuffix() private method

private SetSystemNewlineSuffix ( NewlineType newline, string &mac, string &unix, string &windows, string suffix ) : void
newline NewlineType
mac string
unix string
windows string
suffix string
return void
	private void SetSystemNewlineSuffix (NewlineType newline, ref string mac, ref string unix, ref string windows, string suffix) {
		switch (newline) {
			case NewlineType.Macintosh:
				mac += suffix;
				break;
			case NewlineType.Unix:
				unix += suffix;
				break;
			case NewlineType.Windows:
				windows += suffix;
				break;
		}
	}