]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/ipcservr.tex
revert bad change
[wxWidgets.git] / docs / latex / wx / ipcservr.tex
index 6657e20ea8a13e4f88062f40e6e0596c3a07e702..0c8b3e96e97ee5ab335214652ae2c9746c96b3a8 100644 (file)
@@ -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.
@@ -31,13 +31,13 @@ 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}}