aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2013-11-09 14:33:54 +1100
committerNeil <nyamatongwe@gmail.com>2013-11-09 14:33:54 +1100
commite3f77f430c2345923a89285e85e4a2ea6db0636e (patch)
tree6e65f6dbede9846b7db6fe8043f95a3ca2963aed
parent726f8930eb671beb040d43e106845ffc3c8886bb (diff)
downloadscintilla-mirror-e3f77f430c2345923a89285e85e4a2ea6db0636e.tar.gz
Note limitation on Qt.
-rw-r--r--doc/ScintillaDoc.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index 77473da7c..e5bf32e4f 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -82,7 +82,7 @@
<h1>Scintilla Documentation</h1>
- <p>Last edited 29 September 2013 NH</p>
+ <p>Last edited 9 November 2013 NH</p>
<p>There is <a class="jump" href="Design.html">an overview of the internal design of
Scintilla</a>.<br />
@@ -4413,6 +4413,8 @@ struct Sci_TextToFind {
There is some interaction between call tips and autocompletion lists in that showing a
call tip cancels any active autocompletion list, and vice versa.</p>
+ <p>Call tips are not implemented on Qt.</p>
+
<p>Call tips can highlight part of the text within them. You could use this to highlight the
current argument to a function by counting the number of commas (or whatever separator your
language uses). See <code>SciTEBase::CharAdded()</code> in <code>SciTEBase.cxx</code> for an