diff options
| author | nyamatongwe <unknown> | 2002-04-21 10:20:59 +0000 |
|---|---|---|
| committer | nyamatongwe <unknown> | 2002-04-21 10:20:59 +0000 |
| commit | 5ce0189a77f46696eaa1f3cc5dd0aff2bb5cabd4 (patch) | |
| tree | 39857adc7906b22cb6629149b0ee36eb91f13e04 /src/Document.h | |
| parent | 58510c0fbafdcf5ceed956a208fc34a65cb55358 (diff) | |
| download | scintilla-mirror-5ce0189a77f46696eaa1f3cc5dd0aff2bb5cabd4.tar.gz | |
Some Win64 compatibility and size_t correctness.
Diffstat (limited to 'src/Document.h')
| -rw-r--r-- | src/Document.h | 2 |
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); |
