diff options
author | Sebastian Geerken <devnull@localhost> | 2016-07-24 21:20:40 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2016-07-24 21:20:40 +0200 |
commit | 89a3621f776fe93a30ebeba681a550de933ef059 (patch) | |
tree | a94267959d2e130a08c4c4c63ee5f843308f5865 | |
parent | f3a56bdc779b035b7adc37a2b61a3b3fbea9718d (diff) |
Remove obsolete method.
-rw-r--r-- | dw/oofawarewidget.cc | 5 | ||||
-rw-r--r-- | dw/oofawarewidget.hh | 5 | ||||
-rw-r--r-- | dw/textblock.cc | 9 | ||||
-rw-r--r-- | dw/textblock.hh | 1 |
4 files changed, 0 insertions, 20 deletions
diff --git a/dw/oofawarewidget.cc b/dw/oofawarewidget.cc index f33df546..daf644c2 100644 --- a/dw/oofawarewidget.cc +++ b/dw/oofawarewidget.cc @@ -555,11 +555,6 @@ void OOFAwareWidget::widgetRefSizeChanged (int externalIndex) notImplemented ("OOFAwareWidget::widgetRefSizeChanged"); } -void OOFAwareWidget::clearPositionChanged () -{ - notImplemented ("OOFAwareWidget::clearPositionChanged"); -} - void OOFAwareWidget::oofSizeChanged (bool extremesChanged) { DBG_OBJ_ENTER ("resize", 0, "oofSizeChanged", "%s", diff --git a/dw/oofawarewidget.hh b/dw/oofawarewidget.hh index baeda592..07906055 100644 --- a/dw/oofawarewidget.hh +++ b/dw/oofawarewidget.hh @@ -263,11 +263,6 @@ public: virtual void widgetRefSizeChanged (int externalIndex); /** - * TODO Needed after SRDOP? - */ - virtual void clearPositionChanged (); - - /** * Called by an implementation of dw::oof::OutOfFlowMgr when the size of the * container has changed, typically in sizeAllocateEnd. */ diff --git a/dw/textblock.cc b/dw/textblock.cc index c468c879..615e6f11 100644 --- a/dw/textblock.cc +++ b/dw/textblock.cc @@ -3064,15 +3064,6 @@ void Textblock::widgetRefSizeChanged (int externalIndex) queueResize (makeParentRefInFlow (lineNo), true); } -void Textblock::clearPositionChanged () -{ - DBG_OBJ_ENTER0 ("resize", 0, "clearPositionChanged"); - // Not very efficient (actually, a rewrapping could be easily - // avoided), but this case should not occur very often. - queueResize (0, false); - DBG_OBJ_LEAVE (); -} - void Textblock::oofSizeChanged (bool extremesChanged) { DBG_OBJ_ENTER ("resize", 0, "oofSizeChanged", "%s", diff --git a/dw/textblock.hh b/dw/textblock.hh index d7e1fb4e..0e635b99 100644 --- a/dw/textblock.hh +++ b/dw/textblock.hh @@ -901,7 +901,6 @@ public: void updateReference (int ref); void widgetRefSizeChanged (int externalIndex); - void clearPositionChanged (); void oofSizeChanged (bool extremesChanged); int getGeneratorX (int oofmIndex); int getGeneratorY (int oofmIndex); |