File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -722,7 +722,7 @@ public string IidToName(Guid iid)
722
722
{
723
723
if ( _iids_to_name . TryGetValue ( iid , out string value ) )
724
724
{
725
- return value ;
725
+ return _demangle_com_name ( value ) ;
726
726
}
727
727
728
728
if ( iid == NdrNativeUtils . IID_IUnknown )
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ internal class NdrFormatter : INdrFormatterInternal
70
70
{
71
71
private readonly IDictionary < Guid , string > _iids_to_name ;
72
72
private readonly Func < string , string > _demangle_com_name ;
73
- private DefaultNdrFormatterFlags _flags ;
73
+ private readonly DefaultNdrFormatterFlags _flags ;
74
74
75
75
bool INdrFormatterInternal . ShowProcedureParameterAttributes { get { return true ; } }
76
76
@@ -90,7 +90,7 @@ protected string IidToName(Guid iid)
90
90
{
91
91
if ( _iids_to_name . ContainsKey ( iid ) )
92
92
{
93
- return _iids_to_name [ iid ] ;
93
+ return _demangle_com_name ( _iids_to_name [ iid ] ) ;
94
94
}
95
95
return null ;
96
96
}
You can’t perform that action at this time.
0 commit comments