[gtkmm-documentation] Custom Signals appendix: Really show the example.



commit cecc9692f353f971b72f412f82486d57931f1552
Author: Murray Cumming <murrayc murrayc com>
Date:   Thu Jan 21 11:23:41 2010 +0100

    Custom Signals appendix: Really show the example.
    
    * docs/tutorial/C/gtkmm-tutorial-in.xml: Custom Signals appendix:
    Really show the example code and link to it.
    In the inline code, add a missing public keyword.
    Thanks to Matt Marsh for noticing.

 ChangeLog                             |    9 +++++++++
 docs/tutorial/C/gtkmm-tutorial-in.xml |   12 ++++++++++++
 2 files changed, 21 insertions(+), 0 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index b2fee3a..0d1646b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2010-01-21  Murray Cumming  <murrayc murrayc com>
+
+	Custom Signals appendix: Really show the example.
+
+	* docs/tutorial/C/gtkmm-tutorial-in.xml: Custom Signals appendix:
+	Really show the example code and link to it.
+	In the inline code, add a missing public keyword.
+	Thanks to Matt Marsh for noticing.
+
 2.19.2:
 
 2010-01-18  Murray Cumming  <murrayc murrayc com>
diff --git a/docs/tutorial/C/gtkmm-tutorial-in.xml b/docs/tutorial/C/gtkmm-tutorial-in.xml
index 91b2de2..b088afb 100644
--- a/docs/tutorial/C/gtkmm-tutorial-in.xml
+++ b/docs/tutorial/C/gtkmm-tutorial-in.xml
@@ -8020,6 +8020,7 @@ an accessor method, like so:
 <programlisting>
 class Server
 {
+public:
   //signal accessor:
   typedef sigc::signal&lt;void, bool, int&gt; type_signal_something;
   type_signal_something signal_something();
@@ -8048,6 +8049,17 @@ See <filename>examples/book/signals/custom/</filename> for a full
 working example.
 </para>
 
+
+<sect1 id="chapter-custom-signals-example"><title>Example</title>
+
+<para>
+This is a full working example that defines and uses custom signal. 
+</para>
+
+<para><ulink url="&url_examples_base;signals/custom/">Source Code</ulink></para>
+
+</sect1>
+
 </appendix>
 
 



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