Fresco/Fresco-IDL/share/idl/Fresco TextBuffer.idl,1.17,1.18
Tobias Hunger <[email protected]> Wed, 13 Aug 2003 13:56:56 -0500
| Newsgroups | gmane.comp.video.fresco.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvs/fresco/Fresco/Fresco-IDL/share/idl/Fresco
In directory purcel:/tmp/cvs-serv29836/Fresco-IDL/share/idl/Fresco
Modified Files:
TextBuffer.idl
Log Message:
Remove obsolete members that I introduced for the (now obsolete)
VisualTextBuffer.
Index: TextBuffer.idl
===================================================================
RCS file: /cvs/fresco/Fresco/Fresco-IDL/share/idl/Fresco/TextBuffer.idl,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- TextBuffer.idl 1 Aug 2003 16:47:21 -0000 1.17
+++ TextBuffer.idl 13 Aug 2003 18:56:54 -0000 1.18
@@ -39,9 +39,6 @@
//. These are the changes that can happen to a TextBuffer:
enum ChangeType {insert, remove, cursor};
- //. The possible orders in which the String in the TextBuffer can be.
- enum StringOrder {memory_order, visual_order};
-
//. This structure is passed to observers whenever the
//. TextBuffer changed.
struct Change
@@ -49,7 +46,6 @@
ChangeType type; //.< What happened?
unsigned long pos; //.< Where did it happen?
long len; //.< How long was the change? This might be a negative number.
- boolean visual; //.< Did this change happen to the string in memory or visual order?
};
//. The length of the TextBuffer.