diff options
author | Sebastian Geerken <devnull@localhost> | 2015-10-03 13:15:06 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2015-10-03 13:15:06 +0200 |
commit | 061b93f81103e9a111c7912019f4786a69f3e8b0 (patch) | |
tree | 16e7a92fd158848d4806a83e40dba1d066205db4 /dw/textblock.cc | |
parent | 7422ac81555635ef857d7aa5224fd847ee09e441 (diff) |
SRDOP: renamed `OOFAwareWidget::getLineBreakWidth` to `getGeneratorWidth`; new method `OOFAwareWidget::getGeneratorX`.
Diffstat (limited to 'dw/textblock.cc')
-rw-r--r-- | dw/textblock.cc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dw/textblock.cc b/dw/textblock.cc index e66ab66a..a34ea025 100644 --- a/dw/textblock.cc +++ b/dw/textblock.cc @@ -3179,7 +3179,12 @@ void Textblock::oofSizeChanged (bool extremesChanged) DBG_OBJ_LEAVE (); } -int Textblock::getLineBreakWidth () +int Textblock::getGeneratorX () +{ + return 0; // TODO +} + +int Textblock::getGeneratorWidth () { return lineBreakWidth; } |