Skip to content

Instantly share code, notes, and snippets.

@ajorg
Created September 9, 2010 20:03
Show Gist options
  • Save ajorg/572454 to your computer and use it in GitHub Desktop.
Save ajorg/572454 to your computer and use it in GitHub Desktop.
--- lib/TagLib/TagLib/src/TagLib/IFD/Entries/Rational.cs 2010-08-09 05:57:02.000000000 -0600
+++ lib/TagLib/TagLib/src/TagLib/IFD/Entries/Rational.cs 2010-09-01 11:48:07.000000000 -0600
@@ -62,8 +62,8 @@
/// </param>
public Rational (uint numerator, uint denominator)
{
- Numerator = numerator;
- Denominator = denominator;
+ this.numerator = numerator;
+ this.denominator = denominator;
}
#endregion
--- lib/TagLib/TagLib/src/TagLib/IFD/Entries/SRational.cs 2010-08-09 05:57:02.000000000 -0600
+++ lib/TagLib/TagLib/src/TagLib/IFD/Entries/SRational.cs 2010-09-01 11:47:49.000000000 -0600
@@ -62,8 +62,8 @@
/// </param>
public SRational (int numerator, int denominator)
{
- Numerator = numerator;
- Denominator = denominator;
+ this.numerator = numerator;
+ this.denominator = denominator;
}
#endregion
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment