Skip to content

Commit

Permalink
Make instancing Public Not Creatable
Browse files Browse the repository at this point in the history
  • Loading branch information
timhall committed Oct 5, 2014
1 parent b377da6 commit d6de247
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dictionary.cls
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' Dictionary v1.1.0
' Dictionary v1.1.1
' (c) Tim Hall - https://github.com/timhall/VBA-Dictionary
'
' Drop-in replacement for Scripting.Dictionary on Mac
Expand Down Expand Up @@ -363,7 +363,7 @@ Private Function GetFormattedKey(Key As Variant) As String
Dim Char As String
For i = 1 To Len(GetFormattedKey)
Char = VBA.Mid$(GetFormattedKey, i, 1)
Ascii = Asc(Char)
Ascii = asc(Char)
If Ascii >= 97 And Ascii <= 122 Then
Lowercase = Lowercase & Char
End If
Expand Down
1 change: 1 addition & 0 deletions readme.md
Expand Up @@ -50,6 +50,7 @@ Dict("C") ' -> Empty
#### 1.1.0

- Use compiler statements to use Scripting.Dictionary internally if available (improves Windows performance by ~3x)
- __1.1.1__ Make VBA-Dictionary instancing Public Not Creatable

#### 1.0.0

Expand Down
Binary file modified specs/VBA-Dictionary - Specs.xlsm
Binary file not shown.

0 comments on commit d6de247

Please sign in to comment.