From 23f89b8d35f09c5883f14d7c8dc8e05e4c1c84b1 Mon Sep 17 00:00:00 2001 From: Abdelrazak Younes Date: Wed, 24 Oct 2007 08:50:58 +0000 Subject: [PATCH] Paragraph::Private: change TextContainer to docstring; this will enable to use advance algorithms for string searching/splitting/merging without useless data copying etc. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21171 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/Paragraph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Paragraph.cpp b/src/Paragraph.cpp index 0c5057b61a..314332f370 100644 --- a/src/Paragraph.cpp +++ b/src/Paragraph.cpp @@ -203,7 +203,7 @@ public: /// end of label pos_type begin_of_body_; - typedef std::vector TextContainer; + typedef docstring TextContainer; /// TextContainer text_; };