appobject.py
changeset 3426 6ea4a2ff01c9
parent 3419 32cfd0844243
child 3453 e2572c9ca3ec
--- a/appobject.py	Wed Sep 23 13:27:05 2009 +0200
+++ b/appobject.py	Wed Sep 23 13:28:26 2009 +0200
@@ -370,15 +370,15 @@
 
     @deprecated('[3.6] use self.cw_rset.limited_rql')
     def limited_rql(self):
-        return self.rset.limited_rql()
+        return self.cw_rset.limited_rql()
 
     @deprecated('[3.6] use self.cw_rset.complete_entity(row,col) instead')
     def complete_entity(self, row, col=0, skip_bytes=True):
-        return self.rset.complete_entity(row, col, skip_bytes)
+        return self.cw_rset.complete_entity(row, col, skip_bytes)
 
     @deprecated('[3.6] use self.cw_rset.get_entity(row,col) instead')
     def entity(self, row, col=0):
-        return self.rset.get_entity(row, col)
+        return self.cw_rset.get_entity(row, col)
 
     @deprecated('[3.6] use self._cw.user_rql_callback')
     def user_rql_callback(self, args, msg=None):