Fix premature truncation of brief descriptions in Doxygen comments.
Don't end the brief description at the first period if it's a period which is part of "i.e." or "e.g.": escape the space following it to prevent Doxygen from recognizing it as an end of sentence. See #14866. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73084 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -37,19 +37,19 @@ public:
|
||||
bool GetAddress(void* addr, size_t* len) const;
|
||||
|
||||
/**
|
||||
Returns the base name of this module, e.g. @c "kernel32.dll" or
|
||||
Returns the base name of this module, e.g.\ @c "kernel32.dll" or
|
||||
@c "libc-2.3.2.so".
|
||||
*/
|
||||
wxString GetName() const;
|
||||
|
||||
/**
|
||||
Returns the full path of this module if available, e.g.
|
||||
@c "c:\windows\system32\kernel32.dll" or @c "/lib/libc-2.3.2.so".
|
||||
Returns the full path of this module if available, e.g.\ @c "c:\windows\system32\kernel32.dll"
|
||||
or @c "/lib/libc-2.3.2.so".
|
||||
*/
|
||||
wxString GetPath() const;
|
||||
|
||||
/**
|
||||
Returns the version of this module, e.g. @c "5.2.3790.0" or @c "2.3.2".
|
||||
Returns the version of this module, e.g.\ @c "5.2.3790.0" or @c "2.3.2".
|
||||
The returned string is empty if the version information is not
|
||||
available.
|
||||
*/
|
||||
@@ -138,7 +138,7 @@ public:
|
||||
wxPluginCategory cat = wxDL_PLUGIN_GUI);
|
||||
|
||||
/**
|
||||
Detaches this object from its library handle, i.e. the object will not
|
||||
Detaches this object from its library handle, i.e.\ the object will not
|
||||
unload the library any longer in its destructor but it is now the
|
||||
callers responsibility to do this using Unload().
|
||||
*/
|
||||
|
Reference in New Issue
Block a user