seed r187 - trunk/doc



Author: racarr
Date: Sat Nov  8 03:10:29 2008
New Revision: 187
URL: http://svn.gnome.org/viewvc/seed?rev=187&view=rev

Log:
Keep runtime documentation in sync with recent changes.


Modified:
   trunk/doc/runtime.html

Modified: trunk/doc/runtime.html
==============================================================================
--- trunk/doc/runtime.html	(original)
+++ trunk/doc/runtime.html	Sat Nov  8 03:10:29 2008
@@ -189,15 +189,15 @@
 <pre>
 proto = Seed.prototype(Gtk.Window);
 method = Seed.introspect(proto.translate_coordinates);
-Seed.print(Seed.stringify(method);
+Seed.print(Seed.stringify(method));
 </pre>
 <div class="section"><b>Seed.argv</b></div>
 <p>
 An array representing the arguments passed to the <code>seed</code> interpreter.
 </p>
-<div class="section"><b><i>object</i>.signal.<i>signame</i>.connect</b>(function<i>, context</i>)</div>
+<div class="section"><b><i>object</i>.signal.<i>signame</i>.connect</b>(function<i>, context, user_data </i>)</div>
 <p>
-Connects <i>function</i> to the signal, <i>signame</i>, on <i>object</i>. Any GObject signal will work. <i>context</i> is passed to the signal handler as the <code>this</code> object; if omitted, the global context is used.
+Connects <i>function</i> to the signal, <i>signame</i>, on <i>object</i>. Any GObject signal will work. <i>context</i> is passed to the signal handler as the <code>this</code> object; if omitted, the global context is used. If present, user_data is passed as the last argument to the callback.
 </p>
 <pre>
 function button_clicked()



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]