Kaydet (Commit) ecdaadb7 authored tarafından Jack Jansen's avatar Jack Jansen

Also recognize DragRef as a method-argument.

üst 6a360bd3
This diff is collapsed.
......@@ -37,7 +37,7 @@ class MyScanner(Scanner):
listname = "functions"
if arglist:
t, n, m = arglist[0]
if t == 'DragReference' and m == "InMode":
if t in ('DragReference', 'DragRef') and m == "InMode":
classname = "Method"
listname = "methods"
return classname, listname
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment