comment out unused variables

git-svn-id: https://subtitleedit.googlecode.com/svn/trunk@1417 99eadd0c-20b8-1223-b5c4-2a2b2df33de2
This commit is contained in:
XhmikosR 2012-10-10 10:34:49 +00:00
parent 9a3d431175
commit 5c9cf0913c
2 changed files with 3 additions and 3 deletions

View File

@ -7657,8 +7657,8 @@ namespace Nikse.SubtitleEdit.Forms
private bool ImportSubtitleFromTransportStream(string fileName)
{
const int TeletextPacketLength = 45;
// const int TeletextPacketPayloadLength = TeletextPacketLength - 3; // without Clock Run-in and Framing Code
//const int TeletextPacketLength = 45;
//const int TeletextPacketPayloadLength = TeletextPacketLength - 3; // without Clock Run-in and Framing Code
var tsParser = new Nikse.SubtitleEdit.Logic.TransportStream.TransportStreamParser();

View File

@ -96,7 +96,7 @@ namespace Nikse.SubtitleEdit.Logic.SubtitleFormats
var fs = new FileStream(fileName, FileMode.Create, FileAccess.Write);
bool isChinese = false;
//bool isChinese = false;
int languageId = LanguageIdLatin;
if (Configuration.Settings.SubtitleSettings.CurrentCavena890LanguageId >= 0)
languageId = Configuration.Settings.SubtitleSettings.CurrentCavena890LanguageId;