From: Mathieu Lacage Date: Fri, 16 Jul 2004 06:56:20 +0000 (+0000) Subject: fill in ulinks X-Git-Tag: GLIB_2_5_0~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7825b925de080b7dcc32d4861ae89b786f498396;p=platform%2Fupstream%2Fglib.git fill in ulinks --- diff --git a/docs/reference/gobject/tut_howto.xml b/docs/reference/gobject/tut_howto.xml index 75a8f9d85..6b3f63f0e 100644 --- a/docs/reference/gobject/tut_howto.xml +++ b/docs/reference/gobject/tut_howto.xml @@ -143,7 +143,7 @@ struct _MamanBar { All of Nautilus code and a lot of Gnome libraries use private indirection members, as described - by Herb Sutter in his Pimpl articles (see : Herb summarizes the different + by Herb Sutter in his Pimpl articles (see http://www.gotw.ca/publications/mill04.htm: Herb summarizes the different issues better than I will): typedef struct _MamanBarPrivate MamanBarPrivate; @@ -436,7 +436,7 @@ if (self->private->dispose_has_run) { Just as with C++, there are many different ways to define object methods and extend them: the following list and sections draw on C++ vocabulary. (Readers are expected to know basic C++ buzzwords. Those who have not had to - write C++ code recently can refer to XXXX to refresh their + write C++ code recently can refer to http://www.cplusplus.com/doc/tutorial/ to refresh their memories.)