]> git.saurik.com Git - wxWidgets.git/commitdiff
Avoid missing ref
authorJulian Smart <julian@anthemion.co.uk>
Sat, 28 Oct 2006 10:48:11 +0000 (10:48 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sat, 28 Oct 2006 10:48:11 +0000 (10:48 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42561 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/trefcount.tex

index a5f9592c0fc0f65079f95421dac722aab7dd9889..968ea172a718637a688d17bdd02a911c62cfeb07 100644 (file)
@@ -18,8 +18,6 @@ transparently to the class users and that whether an object is shared or not
 is not seen from the outside of the class - in any case, the result of any
 operation on it is the same.
 
-
-
 \subsection{List of reference-counted wxWidgets classes}\label{refcountlist}
 
 The following classes in wxWidgets have efficient (i.e. fast) assignment operators
@@ -37,8 +35,6 @@ and copy constructors since they are reference-counted:
 \helpref{wxRegionIterator}{wxregioniterator}\\
 \helpref{wxString}{wxstring}
 
-
-
 \subsection{Make your own reference-counted class}\label{wxobjectoverview}
 
 Reference counting can be implemented easily using \helpref{wxObject}{wxobject}
@@ -60,7 +56,7 @@ in fact, all times you'll need to read the data from your wxObject-derived class
 you'll need to call such function.
 
 Very important, all times you need to actually modify the data placed inside your
-wxObject-derived class, you must first call the \helpref{wxObject::UnShare}{wxobjectunshare}
+wxObject-derived class, you must first call the wxObject::UnShare
 function to be sure that the modifications won't affect other instances which are
 eventually sharing your object's data.