FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Display the contents of HwpSummaryInformation on the OLE tabs in the UI by Numpsy · Pull Request #431 · openmcdf/openmcdf · GitHub

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .cs  (2) All 1 file type selected
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ private void UpdateOleTab(CfbStream stream)
UserDefinedProperties.Clear();

string name = stream.EntryInfo.Name;
if (name is not PropertySetNames.SummaryInformation and not PropertySetNames.DocSummaryInformation)
if (name is not PropertySetNames.SummaryInformation and not PropertySetNames.DocSummaryInformation and not PropertySetNames.HwpSummaryInformation)
return;

try
Expand Down
2 changes: 1 addition & 1 deletion StructuredStorageExplorer/MainForm.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ private void UpdateOleTab(CfbStream stream)
dgvUserDefinedProperties.DataSource = null;
dgvOLEProps.DataSource = null;

if (stream.EntryInfo.Name is PropertySetNames.SummaryInformation or PropertySetNames.DocSummaryInformation)
if (stream.EntryInfo.Name is PropertySetNames.SummaryInformation or PropertySetNames.DocSummaryInformation or PropertySetNames.HwpSummaryInformation)
{
OlePropertiesContainer c = new(stream);

Expand Down

Back | FazBrowse Home | New Git URL