summaryrefslogtreecommitdiff
path: root/src/main/java/cuchaz/enigma/gui
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/cuchaz/enigma/gui')
-rw-r--r--src/main/java/cuchaz/enigma/gui/MemberMatchingGui.java4
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