spelling fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75072 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett
2013-10-26 18:51:16 +00:00
parent 166592b8f1
commit 2014950b1c
19 changed files with 27 additions and 27 deletions

View File

@@ -444,7 +444,7 @@ public:
/**
@name Application informations
@name Application information
*/
//@{

View File

@@ -798,7 +798,7 @@ public:
@c "/home/zeitlin/data" on linux for example.
Although this feature is very useful, it may be annoying if you read a
value which containts '$' or '%' symbols (% is used for environment
value which contains '$' or '%' symbols (% is used for environment
variables expansion under Windows) which are not used for environment
variable expansion. In this situation you may call
SetExpandEnvVars(@false) just before reading this value and

View File

@@ -366,7 +366,7 @@ public:
long integer specifying the length of the string (without the last null
character) and then reads the string.
In Unicode build of wxWidgets, the fuction first reads multibyte
In Unicode build of wxWidgets, the function first reads multibyte
(char*) string from the stream and then converts it to Unicode using
the @e conv object passed to constructor and returns the result as
wxString. You are responsible for using the same converter as when

View File

@@ -1562,7 +1562,7 @@ public:
bool CanDrawBitmap() const;
/**
Does the DC supoprt calculating the size required to draw text?
Does the DC support calculating the size required to draw text?
*/
bool CanGetTextExtent() const;

View File

@@ -59,7 +59,7 @@ public:
wxGraphicsContext* GetGraphicsContext() const;
/**
Set the grpahics context to be used for this wxGCDC.
Set the graphics context to be used for this wxGCDC.
*/
void SetGraphicsContext( wxGraphicsContext* ctx );

View File

@@ -145,7 +145,7 @@ public:
/**
Sets the default action for drag and drop. Use wxDragMove or
wxDragCopy to set deafult action to move or copy and use wxDragNone
wxDragCopy to set default action to move or copy and use wxDragNone
(default) to set default action specified by initialization of draging
(see wxDropSource::DoDragDrop())
*/

View File

@@ -186,7 +186,7 @@ public:
@class wxFSFile
This class represents a single file opened by wxFileSystem.
It provides more informations than wxWidgets' input streams
It provides more information than wxWidgets' input streams
(stream, filename, mime type, anchor).
@note Any pointer returned by a method of wxFSFile is valid only as long as

View File

@@ -196,7 +196,7 @@ enum wxGridCellFloatFormat
/// Decimal floating point (%f).
wxGRID_FLOAT_FORMAT_FIXED = 0x0010,
/// Scientific notation (mantise/exponent) using e character (%e).
/// Scientific notation (mantissa/exponent) using e character (%e).
wxGRID_FLOAT_FORMAT_SCIENTIFIC = 0x0020,
/// Use the shorter of %e or %f (%g).

View File

@@ -16,7 +16,7 @@
*/
enum wxLanguage
{
/// User's default/preffered language as got from OS.
/// User's default/preferred language as got from OS.
wxLANGUAGE_DEFAULT,
/// Unknown language, returned if wxLocale::GetSystemLanguage fails.

View File

@@ -812,7 +812,7 @@ public:
If @a ptrSubItem is not @NULL and the wxListCtrl is in the report
mode the subitem (or column) number will also be provided.
This feature is only available in version 2.7.0 or higher and is currently only
implemented under wxMSW and requires at least comctl32.dll of verion 4.70 on
implemented under wxMSW and requires at least comctl32.dll of version 4.70 on
the host system or the value stored in @a ptrSubItem will be always -1.
To compile this feature into wxWidgets library you need to have access to
commctrl.h of version 4.70 that is provided by Microsoft.
@@ -1622,7 +1622,7 @@ public:
This class stores information about a wxListCtrl item or column.
wxListItem is a class which contains informations about:
wxListItem is a class which contains information about:
- Zero based item position; see SetId() and GetId().
- Zero based column index; see SetColumn() and GetColumn().
- The label (or header for columns); see SetText() and GetText().

View File

@@ -8,7 +8,7 @@
/**
@class wxMimeTypesManager
This class allows the application to retrieve informations about all known
This class allows the application to retrieve information about all known
MIME types from a system-specific location and the filename extensions to the
MIME types and vice versa.

View File

@@ -16,7 +16,7 @@
colours.
It is likely that in the future the only use for palettes within wxWidgets
will be for representing colour indeces from images (such as GIF or PNG).
will be for representing colour indices from images (such as GIF or PNG).
The image handlers for these formats have been modified to create a palette
if there is such information in the original image file (usually 256 or less
colour images). See wxImage for more information.

View File

@@ -13,7 +13,7 @@
The values of the constants are chosen so that they can be combined as flags;
this allows to check for operating system families like e.g. @c wxOS_MAC and @c wxOS_UNIX.
Note that you can obtain more detailed informations about the current OS
Note that you can obtain more detailed information about the current OS
version in use by checking the major and minor version numbers returned
by ::wxGetOsVersion() or by wxPlatformInfo::GetOSMajorVersion(),
wxPlatformInfo::GetOSMinorVersion().
@@ -116,7 +116,7 @@ enum wxEndianness
};
/**
A structure containing informations about a Linux distribution as returned
A structure containing information about a Linux distribution as returned
by the @c lsb_release utility.
See wxGetLinuxDistributionInfo() or wxPlatformInfo::GetLinuxDistributionInfo()
@@ -137,18 +137,18 @@ struct wxLinuxDistributionInfo
/**
@class wxPlatformInfo
This class holds informations about the operating system, the toolkit and the
This class holds information about the operating system, the toolkit and the
basic architecture of the machine where the application is currently running.
This class does not only have @e getters for the informations above, it also has
@e setters. This allows you to e.g. save the current platform informations in a
This class does not only have @e getters for the information above, it also has
@e setters. This allows you to e.g. save the current platform information in a
data file (maybe in string form) so that when you later load it, you can easily
retrieve (see the static getters for string->enum conversion functions) and store
inside a wxPlatformInfo instance (using its setters) the signature of the system
which generated it.
In general however you only need to use the static Get() function and then
access the various informations for the current platform:
access the various information for the current platform:
@code
wxLogMessage("This application is running under %s.",
wxPlatformInfo::Get().GetOperatingSystemIdName());

View File

@@ -57,7 +57,7 @@
@section scopedptr_newpointers Declaring new smart pointer types
To declare the smart pointer class @c CLASSNAME containing pointes to
To declare the smart pointer class @c CLASSNAME containing pointer to
a (possibly incomplete) type @c TYPE you should use
@code
wxDECLARE_SCOPED_PTR( TYPE, // type of the values

View File

@@ -428,7 +428,7 @@ public:
virtual ~wxSockAddress();
/**
Delete all informations about the address.
Delete all information about the address.
*/
virtual void Clear();

View File

@@ -81,7 +81,7 @@ public:
protected:
/**
This function must be overrided to process the given frame.
This function must be overidden to process the given frame.
*/
virtual void OnStackFrame(const wxStackFrame& frame) = 0;
};

View File

@@ -255,7 +255,7 @@ public:
@param origString The singular form of the string to be converted.
@param n The number on which the plural form choice depends on.
(In some languages, there are different plural forms
for e.g. n=2 and n=3 etc., in addition to the singlular
for e.g. n=2 and n=3 etc., in addition to the singular
form (n=1) being different.)
@param domain The only domain (i.e. message catalog) to search if
specified. By default this parameter is empty,

View File

@@ -906,7 +906,7 @@ bool wxIsPlatform64Bit();
bool wxIsPlatformLittleEndian();
/**
Returns a structure containing informations about the currently running
Returns a structure containing information about the currently running
Linux distribution.
This function uses the @c lsb_release utility which is part of the

View File

@@ -587,7 +587,7 @@ public:
/**
Returns a list of items in the forward history. The first item in the
vector is the next item in the history with respect to the curently
vector is the next item in the history with respect to the currently
loaded page.
*/
virtual wxVector<wxSharedPtr<wxWebViewHistoryItem> > GetForwardHistory() = 0;
@@ -686,7 +686,7 @@ public:
@note This function will restart the search if the flags
@c wxWEBVIEW_FIND_ENTIRE_WORD or @c wxWEBVIEW_FIND_MATCH_CASE
are changed, since this will require a new search. To reset the
search, for example reseting the highlights call the function
search, for example resetting the highlights call the function
with an empty search phrase. This always returns @c wxNOT_FOUND
on the OSX WebKit backend.
@since 2.9.5
@@ -787,7 +787,7 @@ public:
/**
Get the name of the target frame which the url of this event
has been or will be loaded into. This may return an emptry string
has been or will be loaded into. This may return an empty string
if the frame is not available.
*/
const wxString& GetTarget() const;