]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/ipcservr.tex
Make animation of combo-popdown optional.
[wxWidgets.git] / docs / latex / wx / ipcservr.tex
index 6657e20ea8a13e4f88062f40e6e0596c3a07e702..5bcad63735bacd1605587132c20cf979a11636b0 100644 (file)
@@ -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}}