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:
@@ -73,7 +73,7 @@ enum wxMappingMode
|
||||
wxMM_TWIPS,
|
||||
|
||||
/**
|
||||
Each logical unit is a @e "printer point" i.e. 1/72 of an inch.
|
||||
Each logical unit is a @e "printer point" i.e.\ 1/72 of an inch.
|
||||
Equivalent to about 353 micrometers.
|
||||
*/
|
||||
wxMM_POINTS
|
||||
@@ -1413,7 +1413,7 @@ public:
|
||||
bool IsOk() const;
|
||||
|
||||
/**
|
||||
Sets the x and y axis orientation (i.e., the direction from lowest to
|
||||
Sets the x and y axis orientation (i.e.\ the direction from lowest to
|
||||
highest values on the axis). The default orientation is x axis from
|
||||
left to right and y axis from top down.
|
||||
|
||||
@@ -1427,7 +1427,7 @@ public:
|
||||
void SetAxisOrientation(bool xLeftRight, bool yBottomUp);
|
||||
|
||||
/**
|
||||
Sets the device origin (i.e., the origin in pixels after scaling has
|
||||
Sets the device origin (i.e.\ the origin in pixels after scaling has
|
||||
been applied). This function may be useful in Windows printing
|
||||
operations for placing a graphic on a page.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user