aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Accessor.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-04-04 13:35:59 +0000
committernyamatongwe <devnull@localhost>2000-04-04 13:35:59 +0000
commitcc54b6b2ba9362b9b148b9b256e0a37974c47a53 (patch)
tree3dced34d6c9f802d7e075554cea761616ce69c8b /include/Accessor.h
parent3032c371bd9231f097226869e80bf56543ae2cab (diff)
downloadscintilla-mirror-cc54b6b2ba9362b9b148b9b256e0a37974c47a53.tar.gz
Avoid lots of warnings from Borland C++.
Changed name of interface class defined in Accessor.h to Accessor.
Diffstat (limited to 'include/Accessor.h')
-rw-r--r--include/Accessor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/Accessor.h b/include/Accessor.h
index fc67f07c0..b420397e2 100644
--- a/include/Accessor.h
+++ b/include/Accessor.h
@@ -5,12 +5,12 @@
enum { wsSpace = 1, wsTab = 2, wsSpaceTab = 4, wsInconsistent=8};
-class BufferAccess;
+class Accessor;
-typedef bool (*PFNIsCommentLeader)(BufferAccess &styler, int pos, int len);
+typedef bool (*PFNIsCommentLeader)(Accessor &styler, int pos, int len);
// Interface to data in a Scintilla
-class BufferAccess {
+class Accessor {
public:
virtual void SetCodePage(int codePage_)=0;
virtual char operator[](int position)=0;