diff options
Diffstat (limited to 'dw/textblock.hh')
-rw-r--r-- | dw/textblock.hh | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/dw/textblock.hh b/dw/textblock.hh index 1bf0256e..94dffbac 100644 --- a/dw/textblock.hh +++ b/dw/textblock.hh @@ -6,8 +6,6 @@ namespace dw { -using namespace lout; - /** * \brief A Widget for rendering text blocks, i.e. paragraphs or sequences * of paragraphs. @@ -185,8 +183,8 @@ protected: TextblockIterator (Textblock *textblock, core::Content::Type mask, int index); - object::Object *clone(); - int compareTo(misc::Comparable *other); + lout::object::Object *clone(); + int compareTo(lout::misc::Comparable *other); bool next (); bool prev (); @@ -239,8 +237,8 @@ protected: int lastLineParMax; int wrapRef; /* [0 based] */ - misc::SimpleVector <Line> *lines; - misc::SimpleVector <Word> *words; + lout::misc::SimpleVector <Line> *lines; + lout::misc::SimpleVector <Word> *words; struct {int index, nChar;} hlStart[core::HIGHLIGHT_NUM_LAYERS], hlEnd[core::HIGHLIGHT_NUM_LAYERS]; |