reportlab/platypus/doctemplate.py
changeset 2450 f2ae0122a66a
parent 2449 47b15f941325
child 2460 dc28c1738ea9
--- a/reportlab/platypus/doctemplate.py	Thu Feb 03 11:30:21 2005 +0000
+++ b/reportlab/platypus/doctemplate.py	Thu Feb 03 17:14:58 2005 +0000
@@ -81,13 +81,6 @@
             action = (action,)
         self.action = tuple(action)
 
-    def wrap(self, availWidth, availHeight):
-        '''Should never be called.'''
-        raise NotImplementedError
-
-    def draw(self):
-        '''Should never be called.'''
-        raise NotImplementedError
 
     def apply(self,doc):
         '''
@@ -117,6 +110,14 @@
 class LCActionFlowable(ActionFlowable):
     locChanger = 1                  #we cause a frame or page change
 
+    def wrap(self, availWidth, availHeight):
+        '''Should never be called.'''
+        raise NotImplementedError
+
+    def draw(self):
+        '''Should never be called.'''
+        raise NotImplementedError
+
 class NextFrameFlowable(ActionFlowable):
     def __init__(self,ix,resume=0):
         ActionFlowable.__init__(self,('nextFrame',ix,resume))