Skip to content

Commit

Permalink
Variable name conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
organizedgrime committed Feb 19, 2017
1 parent c7b4c84 commit 18d0759
Show file tree
Hide file tree
Showing 7 changed files with 74 additions and 74 deletions.
6 changes: 3 additions & 3 deletions Steg/bin/Debug/LSBForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ private void retrieveInput_Click(object sender, EventArgs e)
{
if (File.Exists(txtWriteImage.Text) && Directory.Exists(txtWriteDir.Text))
{
if (fileInputBool.Checked && File.Exists(txtSecretFile.Text))
if (cbxEmbedFile.Checked && File.Exists(txtSecretFile.Text))
{
if (new FileInfo(txtSecretFile.Text).Length <= getMaxBytes(txtWriteImage.Text))
{
Expand Down Expand Up @@ -161,7 +161,7 @@ void writeLSB(byte[] byteMsg)
{
lsb.openImg(txtWriteImage.Text);

if (endMarkBool.Checked)
if (cbxWriteMarker.Checked)
{
// The endmarker is "LSB" in ascii
byte[] endMarker = { 0x4c, 0x53, 0x42 };
Expand Down Expand Up @@ -192,7 +192,7 @@ void readLSB(string filename)
lsb.determineLSBs();

// If the trim checkbox is checked, trim the data
if (cbxTrimMarker.Checked)
if (cbxReadMarker.Checked)
{
lsb.LSBs = MIMEAssistant.Cut(lsb.LSBs);
}
Expand Down
142 changes: 71 additions & 71 deletions Steg/bin/Debug/LSBForm.designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified Steg/bin/Debug/Steg.exe
Binary file not shown.
Binary file modified Steg/bin/Debug/Steg.pdb
Binary file not shown.
Binary file modified Steg/obj/Debug/Steg.csproj.GenerateResource.Cache
Binary file not shown.
Binary file modified Steg/obj/Debug/Steg.exe
Binary file not shown.
Binary file modified Steg/obj/Debug/Steg.pdb
Binary file not shown.

0 comments on commit 18d0759

Please sign in to comment.