mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00:00
Fixed missing reference to idaapi module on two usages of E_PREV and E_NEXT
This commit is contained in:
+2
-2
@@ -1991,7 +1991,7 @@ def LineA(ea, num):
|
||||
|
||||
@return: anterior line string
|
||||
"""
|
||||
return idaapi.ExtraGet(ea, E_PREV + num)
|
||||
return idaapi.ExtraGet(ea, idaapi.E_PREV + num)
|
||||
|
||||
|
||||
def LineB(ea, num):
|
||||
@@ -2003,7 +2003,7 @@ def LineB(ea, num):
|
||||
|
||||
@return: posterior line string
|
||||
"""
|
||||
return idaapi.ExtraGet(ea, E_NEXT + num)
|
||||
return idaapi.ExtraGet(ea, idaapi.E_NEXT + num)
|
||||
|
||||
|
||||
def GetCommentEx(ea, repeatable):
|
||||
|
||||
Reference in New Issue
Block a user