From: <bl...@us...> - 2002-12-25 22:39:49
|
Update of /cvsroot/cpptool/rfta/include/rfta/refactoring In directory sc8-pr-cvs1:/tmp/cvs-serv32386/include/rfta/refactoring Modified Files: LineBasedTextDocument.h Log Message: * added tab size attribute Index: LineBasedTextDocument.h =================================================================== RCS file: /cvsroot/cpptool/rfta/include/rfta/refactoring/LineBasedTextDocument.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** LineBasedTextDocument.h 22 Dec 2002 16:03:50 -0000 1.5 --- LineBasedTextDocument.h 25 Dec 2002 22:39:46 -0000 1.6 *************** *** 52,56 **** /*! Constructs a LineBasedTextDocument object. */ ! LineBasedTextDocument(); /// Destructor. --- 52,56 ---- /*! Constructs a LineBasedTextDocument object. */ ! LineBasedTextDocument( int tabSize ); /// Destructor. *************** *** 100,103 **** --- 100,105 ---- #endif std::string content_; + + int tabSize_; }; |