aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2005-03-12 12:42:29 +0000
committernyamatongwe <unknown>2005-03-12 12:42:29 +0000
commit5a3872b7db300f6b9f95233fbc8a364b4eb537f8 (patch)
tree5be44c380d0a19d286458019f6b9643298763cae
parenta15a13ffde556a1db107592df30275d0875c9913 (diff)
downloadscintilla-mirror-5a3872b7db300f6b9f95233fbc8a364b4eb537f8.tar.gz
Fixed window style flags as described in Bug 1160718.
-rw-r--r--doc/Steps.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Steps.html b/doc/Steps.html
index a946f2517..ff88e88a0 100644
--- a/doc/Steps.html
+++ b/doc/Steps.html
@@ -30,7 +30,7 @@
<pre>
hwndScintilla = CreateWindowEx(0,
- &quot;Scintilla&quot;,&quot;&quot;, WS_CHILD|WS_VISIBLE|WS_TABSTOP,
+ &quot;Scintilla&quot;,&quot;&quot;, WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_CLIPCHILDREN,
10,10,500,400,hwndParent,(HMENU)GuiID, hInstance,NULL);
</pre>
<p>