aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Document.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-04-21 10:20:59 +0000
committernyamatongwe <devnull@localhost>2002-04-21 10:20:59 +0000
commit044ad96868d92ceaf1748832e272577a289221ee (patch)
tree39857adc7906b22cb6629149b0ee36eb91f13e04 /src/Document.h
parent2fd5e782637b56483945a9d60af6c1a96a2b43ae (diff)
downloadscintilla-mirror-044ad96868d92ceaf1748832e272577a289221ee.tar.gz
Some Win64 compatibility and size_t correctness.
Diffstat (limited to 'src/Document.h')
-rw-r--r--src/Document.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.h b/src/Document.h
index 9743583fe..34c49a5a6 100644
--- a/src/Document.h
+++ b/src/Document.h
@@ -160,7 +160,7 @@ public:
bool InsertChar(int pos, char ch);
bool InsertString(int position, const char *s);
- bool InsertString(int position, const char *s, int insertLength);
+ bool InsertString(int position, const char *s, size_t insertLength);
void ChangeChar(int pos, char ch);
void DelChar(int pos);
void DelCharBack(int pos);