Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Serg-Norseman committed May 30, 2024
1 parent 2337af1 commit 121f711
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions projects/GKv3/GEDKeeper3/GKUI/Forms/BaseWinSDI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -701,9 +701,9 @@ public void SelectRecordByXRef(string xref, bool delayedTransition = false)
fController.SelectRecordByXRef(xref, delayedTransition);
}

public StringList GetRecordContent(GDMRecord record)
public StringList GetRecordContent(GDMRecord record, RecordContentType contentType)
{
return fController.GetRecordContent(record);
return fController.GetRecordContent(record, contentType);
}

public bool RecordIsFiltered(GDMRecord record)
Expand Down
4 changes: 2 additions & 2 deletions projects/GKvX/GEDKeeperX/GKUI/Forms/BaseWinSDI.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -552,9 +552,9 @@ public void SelectRecordByXRef(string xref, bool delayedTransition = false)
fController.SelectRecordByXRef(xref, delayedTransition);
}

public StringList GetRecordContent(GDMRecord record)
public StringList GetRecordContent(GDMRecord record, RecordContentType contentType)
{
return fController.GetRecordContent(record);
return fController.GetRecordContent(record, contentType);
}

public bool RecordIsFiltered(GDMRecord record)
Expand Down

0 comments on commit 121f711

Please sign in to comment.