aboutsummaryrefslogtreecommitdiff
path: root/dw/textblock.cc
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2014-09-26 17:35:12 +0200
committerSebastian Geerken <devnull@localhost>2014-09-26 17:35:12 +0200
commita8058f6e474f42faea7bc2d632d7b13754ba40ad (patch)
tree1270b232a8d184f540375f07e6c4b3b2cc558384 /dw/textblock.cc
parent482c58422d36425b3c60ea1a7655b342a5be1228 (diff)
More RTFL.
Diffstat (limited to 'dw/textblock.cc')
-rw-r--r--dw/textblock.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/dw/textblock.cc b/dw/textblock.cc
index 674c83b9..b31cbfbd 100644
--- a/dw/textblock.cc
+++ b/dw/textblock.cc
@@ -2812,6 +2812,8 @@ void Textblock::changeWordStyle (int from, int to, core::style::Style *style,
void Textblock::queueDrawRange (int index1, int index2)
{
+ DBG_OBJ_ENTER ("draw", 0, "queueDrawRange", "%d, %d", index1, index2);
+
int from = misc::min (index1, index2);
int to = misc::max (index1, index2);
@@ -2833,6 +2835,8 @@ void Textblock::queueDrawRange (int index1, int index2)
queueDrawArea (0, y, allocation.width, h);
}
+
+ DBG_OBJ_LEAVE ();
}
void Textblock::setClearPosition (int clearPosition)