Fixed missing reference to idaapi module on two usages of E_PREV and E_NEXT

This commit is contained in:
ero.carrera@gmail.com 2008-07-19 13:45:37 +00:00
parent 08f81d8b96
commit 2a77375c0e

View File

@ -1991,7 +1991,7 @@ def LineA(ea, num):
@return: anterior line string @return: anterior line string
""" """
return idaapi.ExtraGet(ea, E_PREV + num) return idaapi.ExtraGet(ea, idaapi.E_PREV + num)
def LineB(ea, num): def LineB(ea, num):
@ -2003,7 +2003,7 @@ def LineB(ea, num):
@return: posterior line string @return: posterior line string
""" """
return idaapi.ExtraGet(ea, E_NEXT + num) return idaapi.ExtraGet(ea, idaapi.E_NEXT + num)
def GetCommentEx(ea, repeatable): def GetCommentEx(ea, repeatable):