Skip to content

Commit

Permalink
Fix missing )
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed Oct 17, 2021
1 parent 2a523cd commit 052a377
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QuoteFixMacro.bas
Original file line number Diff line number Diff line change
Expand Up @@ -1095,7 +1095,7 @@ Public Sub getNamesOutOfString(ByVal originalName As String, ByRef senderName As
tmpName = Left$(tmpName, Len(tmpName) - 5)
title = "Dr. "
ElseIf (Right$(tmpName, 3) = "Dr.") Then
tmpName = Left$(tmpName, Len(tmpName) - 3
tmpName = Left$(tmpName, Len(tmpName) - 3)
title = "Dr. "
End If

Expand Down

0 comments on commit 052a377

Please sign in to comment.