Symbian3/SDK/Source/GUID-D0BD34C9-7793-5FA0-8864-FD7444D62F90.dita
changeset 13 48780e181b38
parent 8 ae94777fff8f
--- a/Symbian3/SDK/Source/GUID-D0BD34C9-7793-5FA0-8864-FD7444D62F90.dita	Fri Jul 16 17:23:46 2010 +0100
+++ b/Symbian3/SDK/Source/GUID-D0BD34C9-7793-5FA0-8864-FD7444D62F90.dita	Tue Jul 20 12:00:49 2010 +0100
@@ -21,7 +21,7 @@
     ...
     };</codeblock>
 <fig id="GUID-30C9DE23-1805-594C-9F7F-BD4A161DE59A">
-<image href="GUID-F342B002-0667-5D51-AE2D-3CF534D70B62_d0e213719_href.png" placement="inline"/>
+<image href="GUID-F342B002-0667-5D51-AE2D-3CF534D70B62_d0e218717_href.png" placement="inline"/>
 </fig>
 <p>Although any kind of object can be an element of a linked list, most lists
 consist of elements which are all of the same type.</p>
@@ -36,7 +36,7 @@
     TDblQueLink iDlink2;
     };</codeblock>
 <fig id="GUID-DC3DDF09-2F30-5704-ACB0-378622DDDD88">
-<image href="GUID-B131AE10-B9B1-53D2-8CAA-A9045957D6F9_d0e213742_href.png" placement="inline"/>
+<image href="GUID-B131AE10-B9B1-53D2-8CAA-A9045957D6F9_d0e218740_href.png" placement="inline"/>
 </fig>
 <p>Elements can also be objects constructed from a variety of classes, all
 ultimately derived from the same base class, where that base class includes
@@ -60,7 +60,7 @@
     }
 </codeblock>
 <fig id="GUID-F8769477-6B6C-5531-9675-AC66FE6B6E3D">
-<image href="GUID-38FF81FD-0C23-586D-AFAE-9F0761A36BAD_d0e213777_href.png" placement="inline"/>
+<image href="GUID-38FF81FD-0C23-586D-AFAE-9F0761A36BAD_d0e218775_href.png" placement="inline"/>
 </fig>
 <p>New link elements are inserted into an existing list using either <codeph>TDblQueLink::Enque()</codeph> or <codeph>TDblQueLink::AddBefore()</codeph> function. Note that <codeph>AddBefore()</codeph> is not available in v5.
 These are prototyped as:</p>
@@ -71,13 +71,13 @@
 is added to the list so that its position follows the element <i>aLink</i>,
 as the following figure shows.</p>
 <fig id="GUID-F46E770B-8BDC-5E61-9E28-043FDAA3B193">
-<image href="GUID-3E1199E4-4F19-58BB-B1EC-8975A04B68FF_d0e213809_href.png" placement="inline"/>
+<image href="GUID-3E1199E4-4F19-58BB-B1EC-8975A04B68FF_d0e218807_href.png" placement="inline"/>
 </fig>
 <p>Calling <codeph>AddBefore()</codeph> on an element means that this element
 is added to the list so that its position precedes the element <i>aLink</i>,
 as the following figure shows.</p>
 <fig id="GUID-0E6C9ADF-0182-52CC-A3D1-AE83F540E42B">
-<image href="GUID-2AB5AA00-71B2-58F4-AE17-9A38D1E5AA99_d0e213823_href.png" placement="inline"/>
+<image href="GUID-2AB5AA00-71B2-58F4-AE17-9A38D1E5AA99_d0e218821_href.png" placement="inline"/>
 </fig>
 <p>Note that new elements cannot be inserted at the beginning or end of a
 list using these functions. The <codeph>AddFirst()</codeph> and <codeph>AddLast()</codeph> members