diff options
| author | 2016-09-01 18:50:56 +0200 | |
|---|---|---|
| committer | 2016-09-01 18:50:56 +0200 | |
| commit | 357e86d096f91c2734b78227cff3166332a54636 (patch) | |
| tree | 964a938b688eca4142a243b552dfe1d2dc9e00ee /src/main/java/cuchaz/enigma/gui | |
| parent | Crash if we find duplicate mappings of classes (Fix #15) (diff) | |
| download | enigma-fork-357e86d096f91c2734b78227cff3166332a54636.tar.gz enigma-fork-357e86d096f91c2734b78227cff3166332a54636.tar.xz enigma-fork-357e86d096f91c2734b78227cff3166332a54636.zip | |
Converter: fix inheritance issue with matcher system
Diffstat (limited to 'src/main/java/cuchaz/enigma/gui')
| -rw-r--r-- | src/main/java/cuchaz/enigma/gui/MemberMatchingGui.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/cuchaz/enigma/gui/MemberMatchingGui.java b/src/main/java/cuchaz/enigma/gui/MemberMatchingGui.java index 30902c4..8f7d6e3 100644 --- a/src/main/java/cuchaz/enigma/gui/MemberMatchingGui.java +++ b/src/main/java/cuchaz/enigma/gui/MemberMatchingGui.java | |||
| @@ -437,7 +437,7 @@ public class MemberMatchingGui<T extends Entry> { | |||
| 437 | protected void match() { | 437 | protected void match() { |
| 438 | 438 | ||
| 439 | // update the field matches | 439 | // update the field matches |
| 440 | m_memberMatches.makeMatch(m_obfSourceEntry, m_obfDestEntry); | 440 | m_memberMatches.makeMatch(m_obfSourceEntry, m_obfDestEntry, m_sourceDeobfuscator, m_destDeobfuscator); |
| 441 | save(); | 441 | save(); |
| 442 | 442 | ||
| 443 | // update the ui | 443 | // update the ui |
| @@ -451,7 +451,7 @@ public class MemberMatchingGui<T extends Entry> { | |||
| 451 | protected void unmatch() { | 451 | protected void unmatch() { |
| 452 | 452 | ||
| 453 | // update the field matches | 453 | // update the field matches |
| 454 | m_memberMatches.unmakeMatch(m_obfSourceEntry, m_obfDestEntry); | 454 | m_memberMatches.unmakeMatch(m_obfSourceEntry, m_obfDestEntry, m_sourceDeobfuscator, m_destDeobfuscator); |
| 455 | save(); | 455 | save(); |
| 456 | 456 | ||
| 457 | // update the ui | 457 | // update the ui |