Small Tex2RTF fixes; wxMotif compile fixes (motif.inc, wxCheckListBox);

wxMSW wxWindow::IsShown fix


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1690 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1999-02-12 22:00:14 +00:00
parent b36f57c252
commit aed0ed3c42
12 changed files with 54 additions and 21 deletions

View File

@@ -481,7 +481,7 @@ Sets an event handler to be called when a socket event occured.
Constructs a new wxSocketClient.
{\bf Warning !} The created socket client needs to be registered to a socket handler (See \helpref{wxSocketHandler}{wxsockethandler}).
{\bf Warning !} The new socket client needs to be registered to a socket handler (See \helpref{wxSocketHandler}{wxsockethandler}).
\wxheading{Parameters}
@@ -494,7 +494,7 @@ Constructs a new wxSocketClient.
\func{}{\destruct{wxSocketClient}}{\void}
Destructs a wxSocketClient object.
Destroys a wxSocketClient object.
%
% Connect
@@ -609,7 +609,7 @@ many sockets.
\func{}{\destruct{wxSocketHandler}}{\void}
Destructs a wxSocketHandler object.
Destroys a wxSocketHandler object.
%
% Register
@@ -763,7 +763,7 @@ Constructs a new wxSocketServer.
\func{}{\destruct{wxSocketServer}}{\void}
Destructs a wxSocketServer object (it doesn't close the accepted connection).
Destroys a wxSocketServer object (it doesn't close the accepted connection).
%
% Accept
@@ -800,4 +800,3 @@ This is useful when someone wants to inherit wxSocketBase.
Returns TRUE if no error occurs, else FALSE.

View File

@@ -14,6 +14,7 @@
\wxheading{Remark}
You can create a similar stream by this way:
\begin{verbatim}
wxStreamBuffer *sb = new wxStreamBuffer(wxStreamBuffer::read);
wxInputStream *input = new wxInputStream(sb);
@@ -52,10 +53,10 @@ Destructor.
\helpref{wxStreamBuffer}{wxstreamBuffer}
\wxheading{Remark}
You can create a similar stream by this way:
\begin{verbatim}
wxStreamBuffer *sb = new wxStreamBuffer(wxStreamBuffer::write);
wxOutputStream *input = new wxOutputStream(sb);
@@ -67,6 +68,7 @@ You can create a similar stream by this way:
\end{verbatim}
This way is also useful to create read/write memory stream:
\begin{verbatim}
wxStreamBuffer *sb = new wxStreamBuffer(wxStreamBuffer::read\_write);
wxOutputStream *output = new wxOutputStream(sb);
@@ -100,3 +102,4 @@ stream.
\func{}{\destruct{wxMemoryOutputStream}}{\void}
Destructor.