X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/47610ec22ab01dbc09307a88ab67c1c95f6ee3b1..c06dde42fe5dc8c97d0a6dbf1d6e590b198e8fbb:/docs/latex/wx/ipcservr.tex?ds=sidebyside

diff --git a/docs/latex/wx/ipcservr.tex b/docs/latex/wx/ipcservr.tex
index 6657e20ea8..5bcad63735 100644
--- a/docs/latex/wx/ipcservr.tex
+++ b/docs/latex/wx/ipcservr.tex
@@ -1,4 +1,4 @@
-\section{\class{wxServer}}\label{wxddeserver}
+\section{\class{wxServer}}\label{wxserver}
 
 A wxServer object represents the server part of a client-server
 DDE-like (Dynamic Data Exchange) conversation. The actual
@@ -10,7 +10,7 @@ To create a server which can communicate with a suitable client,
 you need to derive a class from wxConnection and another from
 wxServer. The custom wxConnection class will intercept
 communications in a `conversation' with a client, and the custom
-wxServer is required so that a user-overridden \helpref{wxServer::OnAcceptConnection}{wxddeserveronacceptconnection} 
+wxServer is required so that a user-overridden \helpref{wxServer::OnAcceptConnection}{wxserveronacceptconnection} 
 member can return a wxConnection of the required class, when a
 connection is made. Look at the IPC sample and the \helpref{Interprocess communications overview}{ipcoverview} for
 an example of how to do this.
@@ -25,19 +25,19 @@ wxServerBase
 
 \wxheading{See also}
 
-\helpref{wxClient}{wxddeclient},
+\helpref{wxClient}{wxclient},
 \helpref{wxConnection}{wxddeconnection}, \helpref{IPC
 overview}{ipcoverview}
 
 \latexignore{\rtfignore{\wxheading{Members}}}
 
-\membersection{wxServer::wxServer}
+\membersection{wxServer::wxServer}\label{wxserverctor}
 
 \func{}{wxServer}{\void}
 
 Constructs a server object.
 
-\membersection{wxServer::Create}
+\membersection{wxServer::Create}\label{wxservercreate}
 
 \func{bool}{Create}{\param{const wxString\& }{service}}
 
@@ -46,10 +46,10 @@ the service name may be either an integer port identifier in
 which case an Internet domain socket will be used for the
 communications, or a valid file name (which shouldn't exist and
 will be deleted afterwards) in which case a Unix domain socket is
-created. FALSE is returned if the call failed (for example, the
+created. false is returned if the call failed (for example, the
 port number is already in use).
 
-\membersection{wxServer::OnAcceptConnection}\label{wxddeserveronacceptconnection}
+\membersection{wxServer::OnAcceptConnection}\label{wxserveronacceptconnection}
 
 \func{virtual wxConnectionBase *}{OnAcceptConnection}{\param{const wxString\& }{topic}}