From 2a77375c0ee13b0603a23397897be9ba4ebf05df Mon Sep 17 00:00:00 2001 From: "ero.carrera@gmail.com" Date: Sat, 19 Jul 2008 13:45:37 +0000 Subject: [PATCH] Fixed missing reference to idaapi module on two usages of E_PREV and E_NEXT --- python/idc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/idc.py b/python/idc.py index 26c6b78..243c068 100644 --- a/python/idc.py +++ b/python/idc.py @@ -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):