summaryrefslogtreecommitdiff
path: root/dw/tablecell.cc
diff options
context:
space:
mode:
Diffstat (limited to 'dw/tablecell.cc')
-rw-r--r--dw/tablecell.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/dw/tablecell.cc b/dw/tablecell.cc
index 67d6cf2d..cbd5e0bf 100644
--- a/dw/tablecell.cc
+++ b/dw/tablecell.cc
@@ -45,12 +45,12 @@ TableCell::~TableCell()
DBG_OBJ_DELETE ();
}
-bool TableCell::wordWrap(int wordIndex, bool wrapAll)
+int TableCell::wordWrap(int wordIndex, bool wrapAll)
{
Textblock::Word *word;
const char *p;
- bool ret = Textblock::wordWrap (wordIndex, wrapAll);
+ int ret = Textblock::wordWrap (wordIndex, wrapAll);
if (charWordIndex == -1) {
word = words->getRef (wordIndex);