Skip to content

Commit

Permalink
REF: silence duplicate warning
Browse files Browse the repository at this point in the history
  • Loading branch information
wqweto committed Sep 12, 2016
1 parent 8341a2b commit 4e0d6e4
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Src/mdUmmm.bas
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ Attribute VB_Name = "mdUmmm"
' $Header: /BuildTools/UMMM/Src/mdUmmm.bas 21 28.10.15 12:50 Wqw $
'
' Unattended Make My Manifest Project
' Copyright (c) 2009-2015 [email protected]
' Copyright (c) 2009-2016 [email protected]
'
' $Log: /BuildTools/UMMM/Src/mdUmmm.bas $
'
'
' 21 28.10.15 12:50 Wqw
' REF: deduplicate api progid too
'
Expand Down Expand Up @@ -430,7 +430,9 @@ Private Function pvDumpClasses(sFile As String, sClasses As String, cOutput As C
sVerIndProgID = .Parent.Name & "." & .Name
End If
End If
ConsolePrint "warning: coclass %1 GUID is duplicate of %2 (%3) in %4" & vbCrLf, sVerIndProgID, m_cClasses(.Guid)(0), .Guid, m_cClasses(.Guid)(1)
If LenB(sVerIndProgID) <> 0 Then
ConsolePrint "warning: coclass %1 GUID is duplicate of %2 (%3) in %4" & vbCrLf, sVerIndProgID, m_cClasses(.Guid)(0), .Guid, m_cClasses(.Guid)(1)
End If
End If
End With
End If
Expand Down

0 comments on commit 4e0d6e4

Please sign in to comment.