Closes #14866.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73085
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
and currency formats need changing too, some languages are written left to
right and others right to left, character encoding may differ and many other
things may need changing too - it is a necessary first step. wxWidgets provides
and currency formats need changing too, some languages are written left to
right and others right to left, character encoding may differ and many other
things may need changing too - it is a necessary first step. wxWidgets provides
-facilities for message translation with it's wxLocale class and is itself fully
+facilities for message translation with its wxLocale class and is itself fully
translated into several languages. Please consult wxWidgets home page for the
most up-to-date translations - and if you translate it into one of the
languages not done yet, your translations would be gratefully accepted for
translated into several languages. Please consult wxWidgets home page for the
most up-to-date translations - and if you translate it into one of the
languages not done yet, your translations would be gratefully accepted for
wxGCDC( const wxPrinterDC& printerDC );
/**
wxGCDC( const wxPrinterDC& printerDC );
/**
- Construct a wxGCDC from an existing grtaphics context.
+ Construct a wxGCDC from an existing graphics context.
*/
wxGCDC(wxGraphicsContext* context);
*/
wxGCDC(wxGraphicsContext* context);
void SetInitialDirectory(const wxString& dir);
/**
void SetInitialDirectory(const wxString& dir);
/**
- Sets the absolute path of (the default converter uses current locale's
- charset)the currently selected directory.
+ Sets the absolute path of the currently selected directory (the default converter uses current locale's
+ charset).
This must be a valid directory if @c wxDIRP_DIR_MUST_EXIST style was given.
*/
void SetPath(const wxString& dirname);
This must be a valid directory if @c wxDIRP_DIR_MUST_EXIST style was given.
*/
void SetPath(const wxString& dirname);
/**
Detaches this event handler from the parent specified in the constructor
/**
Detaches this event handler from the parent specified in the constructor
- (see wxEvtHandler::Unlink() for a similar but not identic function).
+ (see wxEvtHandler::Unlink() for a similar but not identical function).
Normally, a wxProcess object is deleted by its parent when it receives the
notification about the process termination.
Normally, a wxProcess object is deleted by its parent when it receives the
notification about the process termination.
you can do:
@code
if (wxStringCheck<wxIsdigit>(myString))
you can do:
@code
if (wxStringCheck<wxIsdigit>(myString))
- ... // the entire string contains oly digits!
+ ... // the entire string contains only digits!
else
... // at least one character of myString is not a digit
@endcode
else
... // at least one character of myString is not a digit
@endcode