misc fixes of ctor signatures

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56278 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-10-13 13:46:42 +00:00
parent cc0972a251
commit 8067ee1174
10 changed files with 238 additions and 231 deletions

View File

@@ -421,7 +421,7 @@ public:
Constructs a log target which sends all the log messages to the given
@c FILE. If it is @NULL, the messages are sent to @c stderr.
*/
wxLogStderr(FILE fp = NULL);
wxLogStderr(FILE* fp = NULL);
};
@@ -510,7 +510,7 @@ public:
Constructs a log target which sends all the log messages to the given text
control. The @a textctrl parameter cannot be @NULL.
*/
wxLogTextCtrl(wxTextCtrl textctrl);
wxLogTextCtrl(wxTextCtrl* pTextCtrl);
};
@@ -531,7 +531,7 @@ public:
you may not even know about its existence.
@section overview_wxLog_deriving Deriving your own log target
There are two functions which must be implemented by any derived class to
actually process the log messages: DoLog() and
DoLogString(). The second function receives a string
@@ -573,7 +573,7 @@ public:
current mask while a message using string mask will be logged simply if the
mask had been added before to the list of allowed ones.
For example,
@code
wxLogTrace( wxTraceRefCount|wxTraceOleCalls, "Active object ref count: %d", nRef );
@endcode
@@ -584,9 +584,9 @@ public:
@code
wxLogTrace( wxTRACE_OleCalls, "IFoo::Bar() called" );
@endcode
will log the message if it was preceded by
@code
wxLog::AddTraceMask( wxTRACE_OleCalls);
@endcode
@@ -622,8 +622,8 @@ public:
default because otherwise it would be impossible to directly go to the line
from which the log message was generated by simply clicking in the debugger
window on the corresponding error message. If you wish to enable it, please
use SetTimestamp() explicitly.
use SetTimestamp() explicitly.
@section overview_wxLog_Target Manipulating the log target
The functions in this section work with and manipulate the active log
@@ -753,7 +753,7 @@ public:
/**
Returns @true if the @a mask is one of allowed masks for
wxLogTrace().
See also: AddTraceMask(), RemoveTraceMask()
*/
static bool IsAllowedTraceMask(const wxString& mask);