We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60d12f3 commit b12b199Copy full SHA for b12b199
doc/fbchkdoc/spellcheck.bas
@@ -46,7 +46,7 @@ sub WORDS_Clear()
46
end sub
47
48
''
49
-sub WORDS_Add( byref word as string )
+sub WORDS_Add( byref word as const string )
50
if( wordcount < MAX_WORDS ) then
51
wordlist( wordcount ) = word
52
wordcount += 1
@@ -118,9 +118,9 @@ end function
118
function SpellCheck_Word( byref input_word as string ) as integer
119
120
dim as integer correct
121
- dim as AspellWordList ptr suggestions
+ dim as const AspellWordList ptr suggestions
122
dim as AspellStringEnumeration ptr elements
123
- dim as zstring ptr word
+ dim as const zstring ptr word
124
125
function = FALSE
126
0 commit comments