diff options
author | nyamatongwe <unknown> | 2003-07-21 01:04:00 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2003-07-21 01:04:00 +0000 |
commit | aac462df2dcc61ca55bffca4026c31aeba0d690a (patch) | |
tree | 7dd633d98e84d8b8c7985f9f71b93c4518b2bb8e | |
parent | 49d1f567ba6d99b9285f9bd67af21b1ff7c928c4 (diff) | |
download | scintilla-mirror-aac462df2dcc61ca55bffca4026c31aeba0d690a.tar.gz |
Fixed unused parameter warning.
-rw-r--r-- | src/LexPS.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexPS.cxx b/src/LexPS.cxx index 97834862f..6a6f548ae 100644 --- a/src/LexPS.cxx +++ b/src/LexPS.cxx @@ -275,7 +275,7 @@ static void ColourisePSDoc( sc.Complete(); } -static void FoldPSDoc(unsigned int startPos, int length, int initStyle, WordList *[], +static void FoldPSDoc(unsigned int startPos, int length, int, WordList *[], Accessor &styler) { bool foldCompact = styler.GetPropertyInt("fold.compact", 1) != 0; bool foldAtElse = styler.GetPropertyInt("fold.at.else", 0) != 0; |