summaryrefslogtreecommitdiff
path: root/documentation/common.html
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2007-02-08 23:04:20 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2007-02-08 23:04:20 +0000
commit6e9a1630357a21c6ef6357cdde324ae89a565826 (patch)
treeefc85bf8e365b2da7f6dd91e56f78fb5e4574604 /documentation/common.html
parent057e542c395a8cc5391ee57a215c2c644a2fbd0b (diff)
Add handler for thread messages (STR #1536)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5683 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'documentation/common.html')
-rw-r--r--documentation/common.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/common.html b/documentation/common.html
index a759bd5ff..75a95092b 100644
--- a/documentation/common.html
+++ b/documentation/common.html
@@ -533,7 +533,7 @@ around the origin. This function is then linked into the symbols
table using <tt>fl_add_symbol</tt>:</P>
<UL><PRE>
-int fl_add_symbol(const char *name, void (*drawit)(Fl_Color), int scalable)
+<A NAME="fl_add_symbol">int fl_add_symbol(const char *name, void (*drawit)(Fl_Color), int scalable)</A>
</PRE></UL>
<P><i>name</i> is the name of the symbol without the "@"; <i>scalable</I>
@@ -541,7 +541,7 @@ must be set to 1 if the symbol is generated using scalable vector drawing
functions.</P>
<UL><PRE>
-int fl_draw_symbol(const char *name,int x,int y,int w,int h,Fl_Color col)
+<A NAME="fl_draw_symbol">int fl_draw_symbol(const char *name,int x,int y,int w,int h,Fl_Color col)</A>
</PRE></UL>
<P>This function draw a named symbol fitting the given rectangle.