Typo correction patch [ 1208110 ] Lots of typo corrections

Olly Betts


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34436 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2005-05-31 09:20:43 +00:00
parent a6905d8b55
commit 3103e8a97e
155 changed files with 279 additions and 371 deletions

View File

@@ -149,7 +149,7 @@ built. In Bakefile, you specify the target by creating a tag named with the
target type. The possible names for targets are: target type. The possible names for targets are:
exe create an executable file exe create an executable file
dll create a shared libary dll create a shared library
lib create a static library lib create a static library
module create a library that is loaded at runtime (i.e. a plugin) module create a library that is loaded at runtime (i.e. a plugin)

View File

@@ -34,7 +34,7 @@ FIXME: this template has (at least) the following bugs:
<!-- In MSVC these are the different build --> <!-- In MSVC these are the different build -->
<!-- configurations you can have (in the build menu), --> <!-- configurations you can have (in the build menu), -->
<!-- and in autoconf is enabled with enable-xxx=xx. --> <!-- and in autoconf is enabled with enable-xxx=xx. -->
<!-- For other compilers a seperate configuration --> <!-- For other compilers a separate configuration -->
<!-- file is created (such as config.gcc on gcc) --> <!-- file is created (such as config.gcc on gcc) -->
<!-- which has several options a user can modify. --> <!-- which has several options a user can modify. -->
<!-- --> <!-- -->
@@ -155,7 +155,7 @@ FIXME: this template has (at least) the following bugs:
<!-- --> <!-- -->
<!-- The "base class" of all our build targets --> <!-- The "base class" of all our build targets -->
<!-- This links with the appropriate native --> <!-- This links with the appropriate native -->
<!-- libraries required by the platform, the libaries --> <!-- libraries required by the platform, the libraries -->
<!-- we want for our stuff, and the wxWindows libs. --> <!-- we want for our stuff, and the wxWindows libs. -->

View File

@@ -109,11 +109,11 @@ def getVersion():
major = minor = release = None major = minor = release = None
for l in lines: for l in lines:
if not l.startswith('#define'): continue if not l.startswith('#define'): continue
splitted = l.strip().split() splitline = l.strip().split()
if splitted[0] != '#define': continue if splitline[0] != '#define': continue
if len(splitted) < 3: continue if len(splitline) < 3: continue
name = splitted[1] name = splitline[1]
value = splitted[2] value = splitline[2]
if value == None: continue if value == None: continue
if name == 'wxMAJOR_VERSION': major = int(value) if name == 'wxMAJOR_VERSION': major = int(value)
if name == 'wxMINOR_VERSION': minor = int(value) if name == 'wxMINOR_VERSION': minor = int(value)

View File

@@ -3296,7 +3296,7 @@ dnl ----------------------------------------------------------------
IODBC_C_SRC="" IODBC_C_SRC=""
dnl ODBC is handled seperately for MSW dnl ODBC is handled separately for MSW
if test "$TOOLKIT" != "MSW" ; then if test "$TOOLKIT" != "MSW" ; then
if test "$wxUSE_ODBC" = "sys" -o "$wxUSE_ODBC" = "yes" ; then if test "$wxUSE_ODBC" = "sys" -o "$wxUSE_ODBC" = "yes" ; then
@@ -3468,7 +3468,7 @@ if test "$wxUSE_OPENGL" = "yes"; then
if test "x$OPENGL_LIBS" = "x"; then if test "x$OPENGL_LIBS" = "x"; then
dnl it should be an error and not a warning because OpenGL is not on dnl it should be an error and not a warning because OpenGL is not on
dnl by default and so if it had been explicitely requested, we dnl by default and so if it had been explicitly requested, we
dnl shouldn't just fall back to compiling the library without it dnl shouldn't just fall back to compiling the library without it
AC_MSG_ERROR(OpenGL libraries not available) AC_MSG_ERROR(OpenGL libraries not available)
fi fi

View File

@@ -30,8 +30,8 @@ No base class
\twocolwidtha{7cm} \twocolwidtha{7cm}
\begin{twocollist}\itemsep=0pt \begin{twocollist}\itemsep=0pt
\twocolitem{{\bf wxSOUND\_NOERR}}{No error occured} \twocolitem{{\bf wxSOUND\_NOERR}}{No error occurred}
\twocolitem{{\bf wxSOUND\_IOERR}}{An input/output error occured, it may concern \twocolitem{{\bf wxSOUND\_IOERR}}{An input/output error occurred, it may concern
either a driver or a file} either a driver or a file}
\twocolitem{{\bf wxSOUND\_INVFRMT}}{The sound format passed to the function is \twocolitem{{\bf wxSOUND\_INVFRMT}}{The sound format passed to the function is
invalid. Generally, it means that you passed out of range values to the codec invalid. Generally, it means that you passed out of range values to the codec
@@ -271,7 +271,7 @@ Sets the event handler: if it is non-null, all events are routed to it.
\constfunc{wxSoundError}{GetError}{\void} \constfunc{wxSoundError}{GetError}{\void}
It returns the last error which occured. It returns the last error which occurred.
\membersection{wxSoundStream::GetLastAccess}\label{wxsoundstreamgetlastaccess} \membersection{wxSoundStream::GetLastAccess}\label{wxsoundstreamgetlastaccess}
@@ -290,5 +290,5 @@ until the IO queue has at least one empty entry.
\func{void}{OnSoundEvent}{\param{int }{evt}} \func{void}{OnSoundEvent}{\param{int }{evt}}
It is called by the wxSoundStream when a new sound event occured. It is called by the wxSoundStream when a new sound event occurred.

View File

@@ -888,7 +888,7 @@ class cbBarInfo : public wxObject
{ {
DECLARE_DYNAMIC_CLASS( cbBarInfo ) DECLARE_DYNAMIC_CLASS( cbBarInfo )
public: public:
// textual name, by which this bar is refered in layout-customization dialogs // textual name, by which this bar is referred in layout-customization dialogs
wxString mName; wxString mName;
// stores bar's bounds in pane's coordinates // stores bar's bounds in pane's coordinates

View File

@@ -24,7 +24,7 @@
#define wxFPB_EXTRA_X 10 #define wxFPB_EXTRA_X 10
#define wxFPB_EXTRA_Y 4 #define wxFPB_EXTRA_Y 4
#define wxFPB_BMP_RIGHTSPACE 2 // pixels of the bmp to be alligned from the right filled with space #define wxFPB_BMP_RIGHTSPACE 2 // pixels of the bmp to be aligned from the right filled with space
enum enum
{ {

View File

@@ -96,7 +96,7 @@ WX_DEFINE_ARRAY_PTR(wxFoldPanelItem *, wxFoldPanelItemArray);
This control is easy to use. Simply create it as a child for a panel or sash window, and populate panels with This control is easy to use. Simply create it as a child for a panel or sash window, and populate panels with
wxFoldPanelBar::AddFoldPanel(). Then use the wxFoldPanelBar::AddFoldPanelWindow() to add wxWindow derived controls wxFoldPanelBar::AddFoldPanel(). Then use the wxFoldPanelBar::AddFoldPanelWindow() to add wxWindow derived controls
to the current fold panel. Use wxFoldPanelBar::AddFoldPanelSeperator() to put separators between the groups of to the current fold panel. Use wxFoldPanelBar::AddFoldPanelSeparator() to put separators between the groups of
controls that need a visual separator to group them together. After all is constructed, the user can fold controls that need a visual separator to group them together. After all is constructed, the user can fold
the panels by doubleclicking on the bar or single click on the arrow, which will indicate the collapsed or the panels by doubleclicking on the bar or single click on the arrow, which will indicate the collapsed or
expanded state. expanded state.
@@ -125,12 +125,12 @@ private:
void RefreshPanelsFrom(wxFoldPanelItem *item); void RefreshPanelsFrom(wxFoldPanelItem *item);
/** Returns the length of the panels that are expanded and collapsed. This is useful to determine /** Returns the length of the panels that are expanded and collapsed. This is useful to determine
quickly what size is used to display, and what is left at the bottom (right) to allign quickly what size is used to display, and what is left at the bottom (right) to align
the collapsed panels. */ the collapsed panels. */
int GetPanelsLength(int &collapsed, int &expanded); int GetPanelsLength(int &collapsed, int &expanded);
/** Reposition all the collapsed panels to the bottom. When it is not possible to /** Reposition all the collapsed panels to the bottom. When it is not possible to
allign them to the bottom, stick them behind the visible panels. The Rect holds the align them to the bottom, stick them behind the visible panels. The Rect holds the
slack area left between last repositioned panel and the bottom panels. This needs to slack area left between last repositioned panel and the bottom panels. This needs to
get a refresh */ get a refresh */
wxRect RepositionCollapsedToBottom(); wxRect RepositionCollapsedToBottom();
@@ -167,9 +167,9 @@ public:
/** Adds a wxWindow derived class to the referenced wxFoldPanel. IMPORTANT: Make the to be created window, /** Adds a wxWindow derived class to the referenced wxFoldPanel. IMPORTANT: Make the to be created window,
child of the wxFoldPanel. See example that follows. The flags to be used are: child of the wxFoldPanel. See example that follows. The flags to be used are:
- wxFPB_ALIGN_WIDTH: Which means the wxWindow to be added will be alligned to fit the width of the - wxFPB_ALIGN_WIDTH: Which means the wxWindow to be added will be aligned to fit the width of the
wxFoldPanel when it is resized. Very handy for sizer items, buttons and text boxes. wxFoldPanel when it is resized. Very handy for sizer items, buttons and text boxes.
- wxFPB_ALIGN_LEFT: Alligns left instead of fitting the width of the child window to be added. Use either - wxFPB_ALIGN_LEFT: Aligns left instead of fitting the width of the child window to be added. Use either
this one or wxFPB_ALIGN_WIDTH. this one or wxFPB_ALIGN_WIDTH.
The wxWindow to be added can be slightly indented from left and right so it is more visibly placed The wxWindow to be added can be slightly indented from left and right so it is more visibly placed
@@ -196,7 +196,7 @@ public:
// color and also the indents and width alligning like a control. // color and also the indents and width alligning like a control.
m_pnl->AddFoldPanelSeperator(item); m_pnl->AddFoldPanelSeperator(item);
// now add a text ctrl. Also very easy. Allign this on width so that when the control gets wider // now add a text ctrl. Also very easy. Align this on width so that when the control gets wider
// the text control also sizes along. // the text control also sizes along.
m_pnl->AddFoldPanelWindow(item, new wxTextCtrl(item.GetParent(), wxID_ANY, wxT("Comment")), wxFPB_ALIGN_WIDTH, wxFPB_DEFAULT_SPACING, 20); m_pnl->AddFoldPanelWindow(item, new wxTextCtrl(item.GetParent(), wxID_ANY, wxT("Comment")), wxFPB_ALIGN_WIDTH, wxFPB_DEFAULT_SPACING, 20);
@@ -206,8 +206,8 @@ public:
int Spacing = wxFPB_DEFAULT_SPACING, int leftSpacing = wxFPB_DEFAULT_LEFTSPACING, int Spacing = wxFPB_DEFAULT_SPACING, int leftSpacing = wxFPB_DEFAULT_LEFTSPACING,
int rightSpacing = wxFPB_DEFAULT_RIGHTSPACING); int rightSpacing = wxFPB_DEFAULT_RIGHTSPACING);
/** Adds a seperator line to the current wxFoldPanel. The seperator is a simple line which is drawn and is no /** Adds a separator line to the current wxFoldPanel. The separator is a simple line which is drawn and is no
real component. It can be used to seperate groups of controls which belong to eachother. The colour is real component. It can be used to separate groups of controls which belong to each other. The colour is
adjustable, and it takes the same ySpacing, leftSpacing and rightSpacing as AddFoldPanelWindow(). */ adjustable, and it takes the same ySpacing, leftSpacing and rightSpacing as AddFoldPanelWindow(). */
int AddFoldPanelSeperator(const wxFoldPanel &panel, const wxColour &color = wxColour(167,167,167), int AddFoldPanelSeperator(const wxFoldPanel &panel, const wxColour &color = wxColour(167,167,167),
int Spacing = wxFPB_DEFAULT_SPACING, int leftSpacing = wxFPB_DEFAULT_LEFTLINESPACING, int Spacing = wxFPB_DEFAULT_SPACING, int leftSpacing = wxFPB_DEFAULT_LEFTLINESPACING,

View File

@@ -121,13 +121,13 @@ public:
}; };
// resize the element, whatever it is. A separator or // resize the element, whatever it is. A separator or
// line will be always alligned by width or hight // line will be always aligned by width or height
// depending on orientation of the whole panel // depending on orientation of the whole panel
void ResizeItem(int size, bool vertical) { void ResizeItem(int size, bool vertical) {
if(m_flags & wxFPB_ALIGN_WIDTH) if(m_flags & wxFPB_ALIGN_WIDTH)
{ {
// allign by taking full width // align by taking full width
int mySize = size - m_leftSpacing - m_rightSpacing; int mySize = size - m_leftSpacing - m_rightSpacing;
if(mySize < 0) if(mySize < 0)
@@ -185,7 +185,7 @@ public:
virtual ~wxFoldPanelItem(); virtual ~wxFoldPanelItem();
/** Add a window item to the list of items on this panel. The flags are wxFPB_ALIGN_LEFT for a non sizing /** Add a window item to the list of items on this panel. The flags are wxFPB_ALIGN_LEFT for a non sizing
window element, and wxFPB_ALIGN_WIDTH for a width alligned item. The ySpacing parameter reserves a number window element, and wxFPB_ALIGN_WIDTH for a width aligned item. The ySpacing parameter reserves a number
of pixels before the window element, and leftSpacing is an indent. rightSpacing is only relevant when the of pixels before the window element, and leftSpacing is an indent. rightSpacing is only relevant when the
style wxFPB_ALIGN_WIDTH is chosen. */ style wxFPB_ALIGN_WIDTH is chosen. */
void AddWindow(wxWindow *window, int flags, int ySpacing, int leftSpacing, int rightSpacing); void AddWindow(wxWindow *window, int flags, int ySpacing, int leftSpacing, int rightSpacing);

View File

@@ -45,8 +45,8 @@ typedef enum {
// --------------------- // ---------------------
// wxSoundError: // wxSoundError:
// - wxSOUND_NOERR: No error occured // - wxSOUND_NOERR: No error occurred
// - wxSOUND_IOERR: an input/output error occured, it may concern either // - wxSOUND_IOERR: an input/output error occurred, it may concern either
// a driver or a file // a driver or a file
// - wxSOUND_INVFRMT: the sound format passed to the function is invalid. // - wxSOUND_INVFRMT: the sound format passed to the function is invalid.
// Generally, it means that you passed out of range values // Generally, it means that you passed out of range values
@@ -83,7 +83,7 @@ class WXDLLIMPEXP_MMEDIA wxSoundStream;
// --------------------- // ---------------------
// wxSoundCallback(stream, evt, cdata): C callback for sound event. // wxSoundCallback(stream, evt, cdata): C callback for sound event.
// - stream: current wxSoundStream // - stream: current wxSoundStream
// - evt: the sound event which has occured, it may be wxSOUND_INPUT, // - evt: the sound event which has occurred, it may be wxSOUND_INPUT,
// wxSOUND_OUTPUT or wxSOUND_DUPLEX // wxSOUND_OUTPUT or wxSOUND_DUPLEX
// - cdata: User callback data // - cdata: User callback data
// --------------------- // ---------------------

View File

@@ -426,7 +426,7 @@ void wxDynamicToolBar::SizeToolWindows()
info.mRect.height = mSepartorSize; info.mRect.height = mSepartorSize;
} }
// Do we need to set a new size to a seperator object? // Do we need to set a new size to a separator object?
if ( info.mpToolWnd ) if ( info.mpToolWnd )
{ {
info.mpToolWnd->SetSize( info.mRect.x, info.mpToolWnd->SetSize( info.mRect.x,

View File

@@ -352,7 +352,7 @@ int wxFoldPanelBar::GetPanelsLength(int &collapsed, int &expanded)
int value = 0; int value = 0;
// assumed here that all the panels that are expanded // assumed here that all the panels that are expanded
// are positioned after eachother from 0,0 to end. // are positioned after each other from 0,0 to end.
for(size_t j = 0; j < m_panels.GetCount(); j++) for(size_t j = 0; j < m_panels.GetCount(); j++)
{ {

View File

@@ -377,7 +377,7 @@ bool wxSoundStreamPcm::SetSoundFormat(const wxSoundFormatBase& format)
if (m_prebuffer) if (m_prebuffer)
delete[] m_prebuffer; delete[] m_prebuffer;
// We try to minimize the need of dynamic memory allocation by preallocating a buffer. But // We try to minimize the need for dynamic memory allocation by preallocating a buffer. But
// to be sure it will be efficient we minimize the best size. // to be sure it will be efficient we minimize the best size.
if (m_multiplier_in < m_multiplier_out) { if (m_multiplier_in < m_multiplier_out) {
m_prebuffer_size = (wxUint32)(m_sndio->GetBestSize() * m_prebuffer_size = (wxUint32)(m_sndio->GetBestSize() *

View File

@@ -382,7 +382,7 @@ wxSoundInfoHeader *wxSoundStreamWin::AllocHeader(int mode)
// AllocHeaders() allocates WXSOUND_MAX_QUEUE (= 128) blocks for an operation // AllocHeaders() allocates WXSOUND_MAX_QUEUE (= 128) blocks for an operation
// queue. It uses AllocHeader() for each element. // queue. It uses AllocHeader() for each element.
// //
// Once it has allocated all blocks, it returns true and if an error occured // Once it has allocated all blocks, it returns true and if an error occurred
// it returns false. // it returns false.
// ------------------------------------------------------------------------- // -------------------------------------------------------------------------
bool wxSoundStreamWin::AllocHeaders(int mode) bool wxSoundStreamWin::AllocHeaders(int mode)

View File

@@ -15,7 +15,7 @@ class AutoComplete {
char stopChars[256]; char stopChars[256];
char fillUpChars[256]; char fillUpChars[256];
char separator; char separator;
char typesep; // Type seperator char typesep; // Type separator
public: public:
bool ignoreCase; bool ignoreCase;
@@ -50,7 +50,7 @@ public:
void SetSeparator(char separator_); void SetSeparator(char separator_);
char GetSeparator(); char GetSeparator();
/// The typesep character is used for seperating the word from the type /// The typesep character is used for separating the word from the type
void SetTypesep(char separator_); void SetTypesep(char separator_);
char GetTypesep(); char GetTypesep();

View File

@@ -160,8 +160,8 @@ static void ColouriseMETAPOSTDoc(
int currentInterface = CheckMETAPOSTInterface(startPos,length,styler,defaultInterface) ; int currentInterface = CheckMETAPOSTInterface(startPos,length,styler,defaultInterface) ;
// 0 no keyword highlighting // 0 no keyword highlighting
// 1 metapost keyword hightlighting // 1 metapost keyword highlighting
// 2+ metafun keyword hightlighting // 2+ metafun keyword highlighting
int extraInterface = 0 ; int extraInterface = 0 ;

View File

@@ -399,7 +399,7 @@ wxFprintf(m_wxr,_T("[8, 'wxSWISS', 'wxNORMAL', 'wxNORMAL', 0, 'MS Sans Serif']],
bool rc2wxr::Seperator(int ch) bool rc2wxr::Separator(int ch)
{ {
@@ -513,7 +513,7 @@ return tok;
while (Seperator(ch)) while (Separator(ch))
{ {
@@ -541,7 +541,7 @@ m_done=true;
while (!Seperator(ch)) while (!Separator(ch))
{ {

View File

@@ -30,7 +30,7 @@ private:
void ParseStaticText(); void ParseStaticText();
void ParseTextCtrl(); void ParseTextCtrl();
void ParsePushButton(); void ParsePushButton();
bool Seperator(int ch); bool Separator(int ch);
void ParseGroupBox(); void ParseGroupBox();
void ReadRect(int & x, int & y, int & width, int & height); void ReadRect(int & x, int & y, int & width, int & height);
wxString GetToken(); wxString GetToken();

View File

@@ -342,7 +342,7 @@ void rc2xml::ParsePushButton(wxString phrase, wxString varname)
} }
bool rc2xml::Seperator(int ch) bool rc2xml::Separator(int ch)
{ {
//if ((ch==' ')|(ch==',')|(ch==13)|(ch==10)|(ch=='|')|(ch=='\t')) //if ((ch==' ')|(ch==',')|(ch==13)|(ch==10)|(ch=='|')|(ch=='\t'))
if ((ch==' ')|(ch==',')|(ch==13)|(ch==10)|(ch=='\t')) if ((ch==' ')|(ch==',')|(ch==13)|(ch==10)|(ch=='\t'))
@@ -387,7 +387,7 @@ bool rc2xml::ReadRect(int & x, int & y, int & width, int & height)
return ret; // check for more parameters return ret; // check for more parameters
} }
wxString rc2xml::GetToken(bool *listseperator) wxString rc2xml::GetToken(bool *listseparator)
{ {
wxString token=wxEmptyString; wxString token=wxEmptyString;
@@ -405,7 +405,7 @@ wxString rc2xml::GetToken(bool *listseperator)
return token; return token;
} }
while (Seperator(ch)) while (Separator(ch))
{ {
ReadChar(ch); ReadChar(ch);
if (m_done) if (m_done)
@@ -418,7 +418,7 @@ wxString rc2xml::GetToken(bool *listseperator)
} }
while (!Seperator(ch)) while (!Separator(ch))
{ {
token += (char)ch; token += (char)ch;
ReadChar(ch); ReadChar(ch);
@@ -427,8 +427,8 @@ wxString rc2xml::GetToken(bool *listseperator)
if (ch == EOF) if (ch == EOF)
m_done = true; m_done = true;
if (listseperator) if (listseparator)
*listseperator = (ch == ','); *listseparator = (ch == ',');
return token; return token;
} }

View File

@@ -62,10 +62,10 @@ protected:
void ParseRadioButton(wxString phrase,wxString varname); void ParseRadioButton(wxString phrase,wxString varname);
void ParseCheckBox(wxString phrase,wxString varname); void ParseCheckBox(wxString phrase,wxString varname);
void ParsePushButton(wxString phrase, wxString varname); void ParsePushButton(wxString phrase, wxString varname);
bool Seperator(int ch); bool Separator(int ch);
void ParseGroupBox(wxString phrase, wxString varname); void ParseGroupBox(wxString phrase, wxString varname);
bool ReadRect(int & x, int & y, int & width, int & height); bool ReadRect(int & x, int & y, int & width, int & height);
wxString GetToken(bool *listseperator = 0); wxString GetToken(bool *listseparator = 0);
wxString GetQuoteField(); wxString GetQuoteField();
wxString GetStringQuote(); wxString GetStringQuote();
void ReadChar(int &ch); void ReadChar(int &ch);

View File

@@ -7,7 +7,7 @@ under MSWindows 3.1+. Later the rules of the game will be explained for
the lucky ones of you that have never used Windows. the lucky ones of you that have never used Windows.
2. Installation 2. Installation
If you are reading this file, I suppose you have succesfully unpacked the If you are reading this file, I suppose you have successfully unpacked the
files in a directory of your hard disk :-). You should already have files in a directory of your hard disk :-). You should already have
installed wxWin on your system. installed wxWin on your system.
Now you have to modify makefile.bcc Now you have to modify makefile.bcc

View File

@@ -57,7 +57,7 @@ wxChar *GetExtendedDBErrorMsg(wxChar *ErrFile, int ErrLine)
msg.Append (_T("\nODBC errors:\n")); msg.Append (_T("\nODBC errors:\n"));
// msg += _T("\n"); // msg += _T("\n");
/* Scan through each database connection displaying /* Scan through each database connection displaying
* any ODBC errors that have occured. */ * any ODBC errors that have occurred. */
wxDbList *pDbList; wxDbList *pDbList;
for (pDbList = PtrBegDbList; pDbList; pDbList = pDbList->PtrNext) for (pDbList = PtrBegDbList; pDbList; pDbList = pDbList->PtrNext)
{ {

View File

@@ -235,7 +235,7 @@ bool MainApp::OnInit(void) // Does everything needed for a program start
frame->pDoc->p_Splitter = frame->p_Splitter; frame->pDoc->p_Splitter = frame->p_Splitter;
frame->pDoc->p_Splitter->pDoc = frame->pDoc; // ControlBase: saving the Sash frame->pDoc->p_Splitter->pDoc = frame->pDoc; // ControlBase: saving the Sash
//--------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------
//-- Problem : GetClientSize(Width,Hight) are not the same as the values given in the --- //-- Problem : GetClientSize(Width,Height) are not the same as the values given in the ---
//-- construction of the Frame. --- //-- construction of the Frame. ---
//-- Solved : GetClientSize is called here and the difference is noted. When the --- //-- Solved : GetClientSize is called here and the difference is noted. When the ---
//-- Window is closed the diff. is added to the result of GetClientSize. --- //-- Window is closed the diff. is added to the result of GetClientSize. ---

View File

@@ -94,7 +94,7 @@ msgstr "\n"
#: ../browsedb.cpp:117 #: ../browsedb.cpp:117
msgid "\n" msgid "\n"
"-E-> BrowserDB::OnStartDB() : DB CONNECTION ERROR : A problem occured while trying to get a connection to the data source" "-E-> BrowserDB::OnStartDB() : DB CONNECTION ERROR : A problem occurred while trying to get a connection to the data source"
msgstr "\n" msgstr "\n"
"-E-> BrowserDB::OnStartDB() : DB VERBINDUNGSFEHLER : Verbindungsaufbau zur Datenquelle nicht m<>glich" "-E-> BrowserDB::OnStartDB() : DB VERBINDUNGSFEHLER : Verbindungsaufbau zur Datenquelle nicht m<>glich"
@@ -300,7 +300,7 @@ msgid "-E-> unknown Format(%d) - sql(%d)"
msgstr "-E-> unbekannte Format(%d) - sql(%d)" msgstr "-E-> unbekannte Format(%d) - sql(%d)"
#: ../pgmctrl.cpp:165 #: ../pgmctrl.cpp:165
msgid "-E-> wxConfigBase.p_ProgramCfg->DeleteAll() was not succesfull !" msgid "-E-> wxConfigBase.p_ProgramCfg->DeleteAll() was not successful !"
msgstr "-E-> wxConfigBase.p_ProgramCfg->DeleteAll() war nicht Erfolgreich !" msgstr "-E-> wxConfigBase.p_ProgramCfg->DeleteAll() war nicht Erfolgreich !"
#: ../pgmctrl.cpp:149 #: ../pgmctrl.cpp:149
@@ -365,7 +365,7 @@ msgid "-I-> PgmCtrl::OnSelChanged - %s"
msgstr "-I-> PgmCtrl::OnSelChanged - %s" msgstr "-I-> PgmCtrl::OnSelChanged - %s"
#: ../pgmctrl.cpp:163 #: ../pgmctrl.cpp:163
msgid "-I-> wxConfigBase.p_ProgramCfg->DeleteAll() was succesfull." msgid "-I-> wxConfigBase.p_ProgramCfg->DeleteAll() was successful."
msgstr "-I-> wxConfigBase.p_ProgramCfg->DeleteAll() war Erfolgreich !" msgstr "-I-> wxConfigBase.p_ProgramCfg->DeleteAll() war Erfolgreich !"
#: ../dbbrowse.cpp:115 ../dbbrowse.cpp:175 #: ../dbbrowse.cpp:115 ../dbbrowse.cpp:175

View File

@@ -166,9 +166,9 @@ void PgmCtrl::OnSelChanged(wxMouseEvent& WXUNUSED(event))
if (Temp1 == _T("wxConfigBase Delete")) if (Temp1 == _T("wxConfigBase Delete"))
{ {
if (p_ProgramCfg->DeleteAll()) // Default Diretory for wxFileSelector if (p_ProgramCfg->DeleteAll()) // Default Diretory for wxFileSelector
Temp0 = _("-I-> wxConfigBase.p_ProgramCfg->DeleteAll() was succesfull."); Temp0 = _("-I-> wxConfigBase.p_ProgramCfg->DeleteAll() was successful.");
else else
Temp0 = _("-E-> wxConfigBase.p_ProgramCfg->DeleteAll() was not succesfull !"); Temp0 = _("-E-> wxConfigBase.p_ProgramCfg->DeleteAll() was not successful !");
wxBell(); // Ding_a_Ling wxBell(); // Ding_a_Ling
Treffer++; Treffer++;
} }

View File

@@ -63,7 +63,6 @@ contrib/include/wx/animate/*.h
contrib/samples/animate/*.cpp contrib/samples/animate/*.cpp
contrib/samples/animate/*.h contrib/samples/animate/*.h
contrib/samples/animate/*.def
contrib/samples/animate/makefile* contrib/samples/animate/makefile*
contrib/samples/animate/*.xbm contrib/samples/animate/*.xbm
contrib/samples/animate/*.xpm contrib/samples/animate/*.xpm
@@ -86,7 +85,6 @@ contrib/include/wx/applet/*.rc
contrib/samples/applet/*.cpp contrib/samples/applet/*.cpp
contrib/samples/applet/*.h contrib/samples/applet/*.h
contrib/samples/applet/*.def
contrib/samples/applet/makefile* contrib/samples/applet/makefile*
contrib/samples/applet/*.xbm contrib/samples/applet/*.xbm
contrib/samples/applet/*.xpm contrib/samples/applet/*.xpm
@@ -106,7 +104,6 @@ contrib/include/wx/deprecated/*.h
contrib/samples/deprecated/proplist/*.cpp contrib/samples/deprecated/proplist/*.cpp
contrib/samples/deprecated/proplist/*.h contrib/samples/deprecated/proplist/*.h
contrib/samples/deprecated/proplist/*.def
contrib/samples/deprecated/proplist/makefile* contrib/samples/deprecated/proplist/makefile*
contrib/samples/deprecated/proplist/*.xbm contrib/samples/deprecated/proplist/*.xbm
contrib/samples/deprecated/proplist/*.xpm contrib/samples/deprecated/proplist/*.xpm
@@ -121,7 +118,6 @@ contrib/samples/deprecated/proplist/*.bkl
contrib/samples/deprecated/resource/*.cpp contrib/samples/deprecated/resource/*.cpp
contrib/samples/deprecated/resource/*.h contrib/samples/deprecated/resource/*.h
contrib/samples/deprecated/resource/*.def
contrib/samples/deprecated/resource/makefile* contrib/samples/deprecated/resource/makefile*
contrib/samples/deprecated/resource/*.xbm contrib/samples/deprecated/resource/*.xbm
contrib/samples/deprecated/resource/*.xpm contrib/samples/deprecated/resource/*.xpm
@@ -136,7 +132,6 @@ contrib/samples/deprecated/resource/*.bkl
contrib/samples/deprecated/treelay/*.cpp contrib/samples/deprecated/treelay/*.cpp
contrib/samples/deprecated/treelay/*.h contrib/samples/deprecated/treelay/*.h
contrib/samples/deprecated/treelay/*.def
contrib/samples/deprecated/treelay/makefile* contrib/samples/deprecated/treelay/makefile*
contrib/samples/deprecated/treelay/*.xbm contrib/samples/deprecated/treelay/*.xbm
contrib/samples/deprecated/treelay/*.xpm contrib/samples/deprecated/treelay/*.xpm
@@ -159,7 +154,6 @@ contrib/samples/fl/bitmaps/*.bmp
contrib/samples/fl/bitmaps/*.xpm contrib/samples/fl/bitmaps/*.xpm
contrib/samples/fl/*.cpp contrib/samples/fl/*.cpp
contrib/samples/fl/*.h contrib/samples/fl/*.h
contrib/samples/fl/*.def
contrib/samples/fl/*.xbm contrib/samples/fl/*.xbm
contrib/samples/fl/*.xpm contrib/samples/fl/*.xpm
contrib/samples/fl/*.txt contrib/samples/fl/*.txt
@@ -178,7 +172,6 @@ contrib/include/wx/gizmos/*.h
contrib/samples/gizmos/dynsash/*.cpp contrib/samples/gizmos/dynsash/*.cpp
contrib/samples/gizmos/dynsash/*.h contrib/samples/gizmos/dynsash/*.h
contrib/samples/gizmos/dynsash/*.def
contrib/samples/gizmos/dynsash/makefile* contrib/samples/gizmos/dynsash/makefile*
contrib/samples/gizmos/dynsash/*.xbm contrib/samples/gizmos/dynsash/*.xbm
contrib/samples/gizmos/dynsash/*.xpm contrib/samples/gizmos/dynsash/*.xpm
@@ -192,7 +185,6 @@ contrib/samples/gizmos/dynsash/*.bkl
contrib/samples/gizmos/dynsash_switch/*.cpp contrib/samples/gizmos/dynsash_switch/*.cpp
contrib/samples/gizmos/dynsash_switch/*.h contrib/samples/gizmos/dynsash_switch/*.h
contrib/samples/gizmos/dynsash_switch/*.def
contrib/samples/gizmos/dynsash_switch/makefile* contrib/samples/gizmos/dynsash_switch/makefile*
contrib/samples/gizmos/dynsash_switch/*.xbm contrib/samples/gizmos/dynsash_switch/*.xbm
contrib/samples/gizmos/dynsash_switch/*.xpm contrib/samples/gizmos/dynsash_switch/*.xpm
@@ -206,7 +198,6 @@ contrib/samples/gizmos/dynsash_switch/*.bkl
contrib/samples/gizmos/editlbox/*.cpp contrib/samples/gizmos/editlbox/*.cpp
contrib/samples/gizmos/editlbox/*.h contrib/samples/gizmos/editlbox/*.h
contrib/samples/gizmos/editlbox/*.def
contrib/samples/gizmos/editlbox/makefile* contrib/samples/gizmos/editlbox/makefile*
contrib/samples/gizmos/editlbox/*.xbm contrib/samples/gizmos/editlbox/*.xbm
contrib/samples/gizmos/editlbox/*.xpm contrib/samples/gizmos/editlbox/*.xpm
@@ -220,7 +211,6 @@ contrib/samples/gizmos/editlbox/*.bkl
contrib/samples/gizmos/led/*.cpp contrib/samples/gizmos/led/*.cpp
contrib/samples/gizmos/led/*.h contrib/samples/gizmos/led/*.h
contrib/samples/gizmos/led/*.def
contrib/samples/gizmos/led/makefile* contrib/samples/gizmos/led/makefile*
contrib/samples/gizmos/led/*.xbm contrib/samples/gizmos/led/*.xbm
contrib/samples/gizmos/led/*.xpm contrib/samples/gizmos/led/*.xpm
@@ -234,7 +224,6 @@ contrib/samples/gizmos/led/*.bkl
contrib/samples/gizmos/multicell/*.cpp contrib/samples/gizmos/multicell/*.cpp
contrib/samples/gizmos/multicell/*.h contrib/samples/gizmos/multicell/*.h
contrib/samples/gizmos/multicell/*.def
contrib/samples/gizmos/multicell/makefile* contrib/samples/gizmos/multicell/makefile*
contrib/samples/gizmos/multicell/*.xbm contrib/samples/gizmos/multicell/*.xbm
contrib/samples/gizmos/multicell/*.xpm contrib/samples/gizmos/multicell/*.xpm
@@ -248,7 +237,6 @@ contrib/samples/gizmos/multicell/*.bkl
contrib/samples/gizmos/splittree/*.cpp contrib/samples/gizmos/splittree/*.cpp
contrib/samples/gizmos/splittree/*.h contrib/samples/gizmos/splittree/*.h
contrib/samples/gizmos/splittree/*.def
contrib/samples/gizmos/splittree/makefile* contrib/samples/gizmos/splittree/makefile*
contrib/samples/gizmos/splittree/*.xbm contrib/samples/gizmos/splittree/*.xbm
contrib/samples/gizmos/splittree/*.xpm contrib/samples/gizmos/splittree/*.xpm
@@ -269,7 +257,6 @@ contrib/include/wx/plot/*.rc
contrib/samples/plot/*.cpp contrib/samples/plot/*.cpp
contrib/samples/plot/*.h contrib/samples/plot/*.h
contrib/samples/plot/*.def
contrib/samples/plot/makefile* contrib/samples/plot/makefile*
contrib/samples/plot/*.xbm contrib/samples/plot/*.xbm
contrib/samples/plot/*.xpm contrib/samples/plot/*.xpm

View File

@@ -166,7 +166,6 @@ utils/configure.in
utils/hhp2cached/*.h utils/hhp2cached/*.h
utils/hhp2cached/*.cpp utils/hhp2cached/*.cpp
utils/hhp2cached/*.def
utils/hhp2cached/*.rc utils/hhp2cached/*.rc
utils/hhp2cached/makefile* utils/hhp2cached/makefile*
utils/hhp2cached/*.bkl utils/hhp2cached/*.bkl
@@ -184,7 +183,6 @@ samples/*.xpm
samples/access/*.cpp samples/access/*.cpp
samples/access/*.h samples/access/*.h
samples/access/*.def
samples/access/makefile* samples/access/makefile*
samples/access/*.xbm samples/access/*.xbm
samples/access/*.xpm samples/access/*.xpm
@@ -195,7 +193,6 @@ samples/access/*.bkl
samples/artprov/*.cpp samples/artprov/*.cpp
samples/artprov/*.h samples/artprov/*.h
samples/artprov/*.def
samples/artprov/makefile* samples/artprov/makefile*
samples/artprov/*.xbm samples/artprov/*.xbm
samples/artprov/*.xpm samples/artprov/*.xpm
@@ -211,7 +208,6 @@ samples/calendar/*.cpp
samples/calendar/*.h samples/calendar/*.h
samples/calendar/makefile* samples/calendar/makefile*
samples/calendar/*.rc samples/calendar/*.rc
samples/calendar/*.def
samples/calendar/*.ico samples/calendar/*.ico
samples/calendar/*.xpm samples/calendar/*.xpm
samples/calendar/*.txt samples/calendar/*.txt
@@ -222,7 +218,6 @@ samples/caret/*.cpp
samples/caret/*.h samples/caret/*.h
samples/caret/makefile* samples/caret/makefile*
samples/caret/*.rc samples/caret/*.rc
samples/caret/*.def
samples/caret/*.bmp samples/caret/*.bmp
samples/caret/*.xpm samples/caret/*.xpm
samples/caret/*.xbm samples/caret/*.xbm
@@ -234,7 +229,6 @@ samples/caret/*.bkl
samples/checklst/*.cpp samples/checklst/*.cpp
samples/checklst/*.h samples/checklst/*.h
samples/checklst/*.def
samples/checklst/*.rc samples/checklst/*.rc
samples/checklst/*.txt samples/checklst/*.txt
samples/checklst/makefile* samples/checklst/makefile*
@@ -247,7 +241,6 @@ samples/checklst/*.bkl
samples/config/*.cpp samples/config/*.cpp
samples/config/*.h samples/config/*.h
samples/config/*.def
samples/config/makefile* samples/config/makefile*
samples/config/*.xbm samples/config/*.xbm
samples/config/*.xpm samples/config/*.xpm
@@ -264,7 +257,6 @@ samples/console/*.cpp
samples/console/*.h samples/console/*.h
samples/console/makefile* samples/console/makefile*
samples/console/*.rc samples/console/*.rc
samples/console/*.def
samples/console/*.bmp samples/console/*.bmp
samples/console/*.xpm samples/console/*.xpm
samples/console/*.xbm samples/console/*.xbm
@@ -276,7 +268,6 @@ samples/console/*.bkl
samples/controls/*.cpp samples/controls/*.cpp
samples/controls/*.h samples/controls/*.h
samples/controls/*.def
samples/controls/makefile* samples/controls/makefile*
samples/controls/*.xbm samples/controls/*.xbm
samples/controls/*.xpm samples/controls/*.xpm
@@ -293,7 +284,6 @@ samples/dialup/*.cpp
samples/dialup/*.h samples/dialup/*.h
samples/dialup/makefile* samples/dialup/makefile*
samples/dialup/*.rc samples/dialup/*.rc
samples/dialup/*.def
samples/dialup/*.bmp samples/dialup/*.bmp
samples/dialup/*.xpm samples/dialup/*.xpm
samples/dialup/*.xbm samples/dialup/*.xbm
@@ -307,7 +297,6 @@ samples/display/*.cpp
samples/display/*.h samples/display/*.h
samples/display/makefile* samples/display/makefile*
samples/display/*.rc samples/display/*.rc
samples/display/*.def
samples/display/*.bmp samples/display/*.bmp
samples/display/*.xpm samples/display/*.xpm
samples/display/*.xbm samples/display/*.xbm
@@ -319,7 +308,6 @@ samples/display/*.bkl
samples/db/*.cpp samples/db/*.cpp
samples/db/*.h samples/db/*.h
samples/db/*.def
samples/db/makefile* samples/db/makefile*
samples/db/*.xbm samples/db/*.xbm
samples/db/*.xpm samples/db/*.xpm
@@ -333,7 +321,6 @@ samples/db/*.bkl
samples/debugrpt/*.cpp samples/debugrpt/*.cpp
samples/debugrpt/*.h samples/debugrpt/*.h
samples/debugrpt/*.def
samples/debugrpt/makefile* samples/debugrpt/makefile*
samples/debugrpt/*.xbm samples/debugrpt/*.xbm
samples/debugrpt/*.xpm samples/debugrpt/*.xpm
@@ -349,7 +336,6 @@ samples/dnd/*.h
samples/dnd/makefile* samples/dnd/makefile*
samples/dnd/*.rc samples/dnd/*.rc
samples/dnd/*.wxr samples/dnd/*.wxr
samples/dnd/*.def
samples/dnd/*.bmp samples/dnd/*.bmp
samples/dnd/*.xbm samples/dnd/*.xbm
samples/dnd/*.xpm samples/dnd/*.xpm
@@ -364,7 +350,6 @@ samples/drawing/*.cpp
samples/drawing/*.h samples/drawing/*.h
samples/drawing/makefile* samples/drawing/makefile*
samples/drawing/*.rc samples/drawing/*.rc
samples/drawing/*.def
samples/drawing/*.bmp samples/drawing/*.bmp
samples/drawing/*.xpm samples/drawing/*.xpm
samples/drawing/*.xbm samples/drawing/*.xbm
@@ -376,7 +361,6 @@ samples/drawing/*.bkl
samples/dialogs/*.h samples/dialogs/*.h
samples/dialogs/*.cpp samples/dialogs/*.cpp
samples/dialogs/*.def
samples/dialogs/*.rc samples/dialogs/*.rc
samples/dialogs/makefile* samples/dialogs/makefile*
samples/dialogs/*.xbm samples/dialogs/*.xbm
@@ -389,7 +373,6 @@ samples/dialogs/*.bkl
samples/docview/*.h samples/docview/*.h
samples/docview/*.cpp samples/docview/*.cpp
samples/docview/*.def
samples/docview/*.rc samples/docview/*.rc
samples/docview/makefile* samples/docview/makefile*
samples/docview/*.xbm samples/docview/*.xbm
@@ -403,7 +386,6 @@ samples/docview/*.r
samples/docvwmdi/*.h samples/docvwmdi/*.h
samples/docvwmdi/*.cpp samples/docvwmdi/*.cpp
samples/docvwmdi/*.def
samples/docvwmdi/*.rc samples/docvwmdi/*.rc
samples/docvwmdi/makefile* samples/docvwmdi/makefile*
samples/docvwmdi/*.xbm samples/docvwmdi/*.xbm
@@ -418,7 +400,6 @@ samples/dragimag/*.cpp
samples/dragimag/*.h samples/dragimag/*.h
samples/dragimag/makefile* samples/dragimag/makefile*
samples/dragimag/*.rc samples/dragimag/*.rc
samples/dragimag/*.def
samples/dragimag/*.ico samples/dragimag/*.ico
samples/dragimag/*.xpm samples/dragimag/*.xpm
samples/dragimag/*.png samples/dragimag/*.png
@@ -428,7 +409,6 @@ samples/dragimag/*.bkl
samples/dynamic/*.cpp samples/dynamic/*.cpp
samples/dynamic/*.h samples/dynamic/*.h
samples/dynamic/*.def
samples/dynamic/makefile* samples/dynamic/makefile*
samples/dynamic/*.xbm samples/dynamic/*.xbm
samples/dynamic/*.xpm samples/dynamic/*.xpm
@@ -442,7 +422,6 @@ samples/dynamic/*.bkl
samples/erase/*.cpp samples/erase/*.cpp
samples/erase/*.h samples/erase/*.h
samples/erase/*.def
samples/erase/makefile* samples/erase/makefile*
samples/erase/*.xbm samples/erase/*.xbm
samples/erase/*.xpm samples/erase/*.xpm
@@ -456,7 +435,6 @@ samples/erase/*.bkl
samples/event/*.cpp samples/event/*.cpp
samples/event/*.h samples/event/*.h
samples/event/*.def
samples/event/*.rc samples/event/*.rc
samples/event/*.inf samples/event/*.inf
samples/event/*.txt samples/event/*.txt
@@ -472,7 +450,6 @@ samples/except/*.cpp
samples/except/*.h samples/except/*.h
samples/except/makefile* samples/except/makefile*
samples/except/*.rc samples/except/*.rc
samples/except/*.def
samples/except/*.ico samples/except/*.ico
samples/except/*.xpm samples/except/*.xpm
samples/except/*.txt samples/except/*.txt
@@ -483,7 +460,6 @@ samples/exec/*.cpp
samples/exec/*.h samples/exec/*.h
samples/exec/makefile* samples/exec/makefile*
samples/exec/*.rc samples/exec/*.rc
samples/exec/*.def
samples/exec/*.ico samples/exec/*.ico
samples/exec/*.xpm samples/exec/*.xpm
samples/exec/*.txt samples/exec/*.txt
@@ -494,7 +470,6 @@ samples/font/*.cpp
samples/font/*.h samples/font/*.h
samples/font/makefile* samples/font/makefile*
samples/font/*.rc samples/font/*.rc
samples/font/*.def
samples/font/*.bmp samples/font/*.bmp
samples/font/*.xpm samples/font/*.xpm
samples/font/*.xbm samples/font/*.xbm
@@ -506,7 +481,6 @@ samples/font/*.bkl
samples/grid/*.cpp samples/grid/*.cpp
samples/grid/*.h samples/grid/*.h
samples/grid/*.def
samples/grid/*.rc samples/grid/*.rc
samples/grid/*.txt samples/grid/*.txt
samples/grid/makefile* samples/grid/makefile*
@@ -519,7 +493,6 @@ samples/grid/*.bkl
samples/help/*.cpp samples/help/*.cpp
samples/help/*.h samples/help/*.h
samples/help/*.def
samples/help/makefile* samples/help/makefile*
samples/help/*.xbm samples/help/*.xbm
samples/help/*.xpm samples/help/*.xpm
@@ -551,7 +524,6 @@ samples/help/*.bkl
samples/htlbox/*.cpp samples/htlbox/*.cpp
samples/htlbox/*.h samples/htlbox/*.h
samples/htlbox/*.def
samples/htlbox/makefile* samples/htlbox/makefile*
samples/htlbox/*.xpm samples/htlbox/*.xpm
samples/htlbox/*.ico samples/htlbox/*.ico
@@ -567,7 +539,6 @@ samples/html/about/*.cpp
samples/html/about/*.h samples/html/about/*.h
samples/html/about/makefile* samples/html/about/makefile*
samples/html/about/*.rc samples/html/about/*.rc
samples/html/about/*.def
samples/html/about/*.bmp samples/html/about/*.bmp
samples/html/about/*.xpm samples/html/about/*.xpm
samples/html/about/*.xbm samples/html/about/*.xbm
@@ -583,7 +554,6 @@ samples/html/help/*.cpp
samples/html/help/*.h samples/html/help/*.h
samples/html/help/makefile* samples/html/help/makefile*
samples/html/help/*.rc samples/html/help/*.rc
samples/html/help/*.def
samples/html/help/*.bmp samples/html/help/*.bmp
samples/html/help/*.xpm samples/html/help/*.xpm
samples/html/help/*.xbm samples/html/help/*.xbm
@@ -601,7 +571,6 @@ samples/html/htmlctrl/*.cpp
samples/html/htmlctrl/*.h samples/html/htmlctrl/*.h
samples/html/htmlctrl/makefile* samples/html/htmlctrl/makefile*
samples/html/htmlctrl/*.rc samples/html/htmlctrl/*.rc
samples/html/htmlctrl/*.def
samples/html/htmlctrl/*.bmp samples/html/htmlctrl/*.bmp
samples/html/htmlctrl/*.xpm samples/html/htmlctrl/*.xpm
samples/html/htmlctrl/*.xbm samples/html/htmlctrl/*.xbm
@@ -616,7 +585,6 @@ samples/html/printing/*.h
samples/html/printing/makefile* samples/html/printing/makefile*
samples/html/printing/*.rc samples/html/printing/*.rc
samples/html/printing/*.pro samples/html/printing/*.pro
samples/html/printing/*.def
samples/html/printing/*.bmp samples/html/printing/*.bmp
samples/html/printing/*.xpm samples/html/printing/*.xpm
samples/html/printing/*.xbm samples/html/printing/*.xbm
@@ -630,7 +598,6 @@ samples/html/test/*.cpp
samples/html/test/*.h samples/html/test/*.h
samples/html/test/makefile* samples/html/test/makefile*
samples/html/test/*.rc samples/html/test/*.rc
samples/html/test/*.def
samples/html/test/*.bmp samples/html/test/*.bmp
samples/html/test/*.xpm samples/html/test/*.xpm
samples/html/test/*.xbm samples/html/test/*.xbm
@@ -646,7 +613,6 @@ samples/html/virtual/*.cpp
samples/html/virtual/*.h samples/html/virtual/*.h
samples/html/virtual/makefile* samples/html/virtual/makefile*
samples/html/virtual/*.rc samples/html/virtual/*.rc
samples/html/virtual/*.def
samples/html/virtual/*.bmp samples/html/virtual/*.bmp
samples/html/virtual/*.xpm samples/html/virtual/*.xpm
samples/html/virtual/*.xbm samples/html/virtual/*.xbm
@@ -661,7 +627,6 @@ samples/html/widget/*.cpp
samples/html/widget/*.h samples/html/widget/*.h
samples/html/widget/makefile* samples/html/widget/makefile*
samples/html/widget/*.rc samples/html/widget/*.rc
samples/html/widget/*.def
samples/html/widget/*.bmp samples/html/widget/*.bmp
samples/html/widget/*.xpm samples/html/widget/*.xpm
samples/html/widget/*.xbm samples/html/widget/*.xbm
@@ -676,7 +641,6 @@ samples/html/zip/*.cpp
samples/html/zip/*.h samples/html/zip/*.h
samples/html/zip/makefile* samples/html/zip/makefile*
samples/html/zip/*.rc samples/html/zip/*.rc
samples/html/zip/*.def
samples/html/zip/*.bmp samples/html/zip/*.bmp
samples/html/zip/*.xpm samples/html/zip/*.xpm
samples/html/zip/*.xbm samples/html/zip/*.xbm
@@ -692,7 +656,6 @@ samples/html/helpview/*.cpp
samples/html/helpview/*.h samples/html/helpview/*.h
samples/html/helpview/makefile* samples/html/helpview/makefile*
samples/html/helpview/*.rc samples/html/helpview/*.rc
samples/html/helpview/*.def
samples/html/helpview/*.bmp samples/html/helpview/*.bmp
samples/html/helpview/*.xpm samples/html/helpview/*.xpm
samples/html/helpview/*.xbm samples/html/helpview/*.xbm
@@ -709,7 +672,6 @@ samples/image/*.cpp
samples/image/*.h samples/image/*.h
samples/image/makefile* samples/image/makefile*
samples/image/*.rc samples/image/*.rc
samples/image/*.def
samples/image/*.bmp samples/image/*.bmp
samples/image/*.xpm samples/image/*.xpm
samples/image/*.xbm samples/image/*.xbm
@@ -728,7 +690,6 @@ samples/image/*.bkl
samples/internat/*.cpp samples/internat/*.cpp
samples/internat/*.h samples/internat/*.h
samples/internat/*.def
samples/internat/*.rc samples/internat/*.rc
samples/internat/*.txt samples/internat/*.txt
samples/internat/makefile* samples/internat/makefile*
@@ -773,7 +734,6 @@ samples/ipc/server.dos
samples/ipc/client.g95 samples/ipc/client.g95
samples/ipc/server.g95 samples/ipc/server.g95
samples/ipc/*.rc samples/ipc/*.rc
samples/ipc/*.def
samples/ipc/*.bmp samples/ipc/*.bmp
samples/ipc/*.xpm samples/ipc/*.xpm
samples/ipc/*.xbm samples/ipc/*.xbm
@@ -785,7 +745,6 @@ samples/ipc/*.bkl
samples/joytest/*.h samples/joytest/*.h
samples/joytest/*.cpp samples/joytest/*.cpp
samples/joytest/*.def
samples/joytest/*.rc samples/joytest/*.rc
samples/joytest/makefile.* samples/joytest/makefile.*
samples/joytest/*.txt samples/joytest/*.txt
@@ -796,7 +755,6 @@ samples/joytest/*.bkl
samples/keyboard/*.cpp samples/keyboard/*.cpp
samples/keyboard/*.h samples/keyboard/*.h
samples/keyboard/*.def
samples/keyboard/*.rc samples/keyboard/*.rc
samples/keyboard/*.txt samples/keyboard/*.txt
samples/keyboard/makefile* samples/keyboard/makefile*
@@ -809,7 +767,6 @@ samples/keyboard/*.bkl
samples/layout/*.cpp samples/layout/*.cpp
samples/layout/*.h samples/layout/*.h
samples/layout/*.def
samples/layout/makefile* samples/layout/makefile*
samples/layout/*.xbm samples/layout/*.xbm
samples/layout/*.xpm samples/layout/*.xpm
@@ -821,7 +778,6 @@ samples/layout/*.bkl
samples/listbox/*.cpp samples/listbox/*.cpp
samples/listbox/*.h samples/listbox/*.h
samples/listbox/*.def
samples/listbox/*.rc samples/listbox/*.rc
samples/listbox/*.txt samples/listbox/*.txt
samples/listbox/makefile* samples/listbox/makefile*
@@ -830,7 +786,6 @@ samples/listbox/*.bkl
samples/listctrl/*.cpp samples/listctrl/*.cpp
samples/listctrl/*.h samples/listctrl/*.h
samples/listctrl/*.def
samples/listctrl/*.rc samples/listctrl/*.rc
samples/listctrl/*.txt samples/listctrl/*.txt
samples/listctrl/makefile* samples/listctrl/makefile*
@@ -847,7 +802,6 @@ samples/listctrl/*.bkl
samples/mdi/*.cpp samples/mdi/*.cpp
samples/mdi/*.h samples/mdi/*.h
samples/mdi/*.def
samples/mdi/makefile* samples/mdi/makefile*
samples/mdi/*.xbm samples/mdi/*.xbm
samples/mdi/*.xpm samples/mdi/*.xpm
@@ -862,7 +816,6 @@ samples/mdi/*.bkl
samples/mediaplayer/*.cpp samples/mediaplayer/*.cpp
samples/mediaplayer/*.h samples/mediaplayer/*.h
samples/mediaplayer/*.def
samples/mediaplayer/makefile* samples/mediaplayer/makefile*
samples/mediaplayer/*.xbm samples/mediaplayer/*.xbm
samples/mediaplayer/*.xpm samples/mediaplayer/*.xpm
@@ -874,7 +827,6 @@ samples/menu/*.cpp
samples/menu/*.h samples/menu/*.h
samples/menu/makefile* samples/menu/makefile*
samples/menu/*.rc samples/menu/*.rc
samples/menu/*.def
samples/menu/*.bmp samples/menu/*.bmp
samples/menu/*.xpm samples/menu/*.xpm
samples/menu/*.xbm samples/menu/*.xbm
@@ -886,7 +838,6 @@ samples/menu/*.bkl
samples/memcheck/*.h samples/memcheck/*.h
samples/memcheck/*.cpp samples/memcheck/*.cpp
samples/memcheck/*.def
samples/memcheck/*.rc samples/memcheck/*.rc
samples/memcheck/makefile* samples/memcheck/makefile*
samples/memcheck/*.xbm samples/memcheck/*.xbm
@@ -899,7 +850,6 @@ samples/memcheck/*.bkl
samples/minimal/*.cpp samples/minimal/*.cpp
samples/minimal/*.h samples/minimal/*.h
samples/minimal/*.def
samples/minimal/makefile* samples/minimal/makefile*
samples/minimal/*.xbm samples/minimal/*.xbm
samples/minimal/*.xpm samples/minimal/*.xpm
@@ -911,7 +861,6 @@ samples/minimal/*.r
samples/minifram/*.h samples/minifram/*.h
samples/minifram/*.cpp samples/minifram/*.cpp
samples/minifram/*.def
samples/minifram/*.rc samples/minifram/*.rc
samples/minifram/makefile* samples/minifram/makefile*
samples/minifram/*.xbm samples/minifram/*.xbm
@@ -940,7 +889,6 @@ samples/mobile/*.bkl
samples/multimon/*.h samples/multimon/*.h
samples/multimon/*.cpp samples/multimon/*.cpp
samples/multimon/*.def
samples/multimon/*.rc samples/multimon/*.rc
samples/multimon/makefile* samples/multimon/makefile*
samples/multimon/*.xbm samples/multimon/*.xbm
@@ -955,7 +903,6 @@ samples/notebook/*.cpp
samples/notebook/*.h samples/notebook/*.h
samples/notebook/makefile* samples/notebook/makefile*
samples/notebook/*.rc samples/notebook/*.rc
samples/notebook/*.def
samples/notebook/*.bmp samples/notebook/*.bmp
samples/notebook/*.xbm samples/notebook/*.xbm
samples/notebook/*.xpm samples/notebook/*.xpm
@@ -966,7 +913,6 @@ samples/notebook/*.bkl
samples/odbc/*.h samples/odbc/*.h
samples/odbc/*.cpp samples/odbc/*.cpp
samples/odbc/*.def
samples/odbc/*.rc samples/odbc/*.rc
samples/odbc/makefile* samples/odbc/makefile*
samples/odbc/*.inf samples/odbc/*.inf
@@ -1030,7 +976,6 @@ samples/popup/*.cpp
samples/popup/*.h samples/popup/*.h
samples/popup/makefile* samples/popup/makefile*
samples/popup/*.rc samples/popup/*.rc
samples/popup/*.def
samples/popup/*.bmp samples/popup/*.bmp
samples/popup/*.xpm samples/popup/*.xpm
samples/popup/*.ico samples/popup/*.ico
@@ -1041,7 +986,6 @@ samples/popup/*.bkl
samples/printing/*.cpp samples/printing/*.cpp
samples/printing/*.h samples/printing/*.h
samples/printing/*.def
samples/printing/makefile* samples/printing/makefile*
samples/printing/*.xbm samples/printing/*.xbm
samples/printing/*.xpm samples/printing/*.xpm
@@ -1055,7 +999,6 @@ samples/printing/*.bkl
samples/propsize/*.cpp samples/propsize/*.cpp
samples/propsize/*.h samples/propsize/*.h
samples/propsize/*.def
samples/propsize/makefile* samples/propsize/makefile*
samples/propsize/*.xbm samples/propsize/*.xbm
samples/propsize/*.xpm samples/propsize/*.xpm
@@ -1067,7 +1010,6 @@ samples/propsize/*.bkl
samples/render/*.cpp samples/render/*.cpp
samples/render/*.h samples/render/*.h
samples/render/*.def
samples/render/makefile* samples/render/makefile*
samples/render/*.xbm samples/render/*.xbm
samples/render/*.xpm samples/render/*.xpm
@@ -1079,7 +1021,6 @@ samples/render/*.bkl
samples/richedit/*.cpp samples/richedit/*.cpp
samples/richedit/*.h samples/richedit/*.h
samples/richedit/*.def
samples/richedit/makefile* samples/richedit/makefile*
samples/richedit/*.xbm samples/richedit/*.xbm
samples/richedit/*.xpm samples/richedit/*.xpm
@@ -1095,17 +1036,15 @@ samples/rotate/*.cpp
samples/rotate/*.h samples/rotate/*.h
samples/rotate/makefile* samples/rotate/makefile*
samples/rotate/*.rc samples/rotate/*.rc
samples/rotate/*.def
samples/rotate/*.ico samples/rotate/*.ico
samples/rotate/*.xpm samples/rotate/*.xpm
samples/rotate/*.txt samples/rotate/*.txt
samples/rotate/*.bmp samples/rotate/*.png
samples/rotate/*.pro samples/rotate/*.pro
samples/rotate/*.bkl samples/rotate/*.bkl
samples/sashtest/*.cpp samples/sashtest/*.cpp
samples/sashtest/*.h samples/sashtest/*.h
samples/sashtest/*.def
samples/sashtest/*.rc samples/sashtest/*.rc
samples/sashtest/*.txt samples/sashtest/*.txt
samples/sashtest/makefile* samples/sashtest/makefile*
@@ -1119,7 +1058,6 @@ samples/scroll/*.cpp
samples/scroll/*.h samples/scroll/*.h
samples/scroll/makefile* samples/scroll/makefile*
samples/scroll/*.rc samples/scroll/*.rc
samples/scroll/*.def
samples/scroll/*.bmp samples/scroll/*.bmp
samples/scroll/*.xpm samples/scroll/*.xpm
samples/scroll/*.xbm samples/scroll/*.xbm
@@ -1133,7 +1071,6 @@ samples/scrollsub/*.cpp
samples/scrollsub/*.h samples/scrollsub/*.h
samples/scrollsub/makefile* samples/scrollsub/makefile*
samples/scrollsub/*.rc samples/scrollsub/*.rc
samples/scrollsub/*.def
samples/scrollsub/*.bmp samples/scrollsub/*.bmp
samples/scrollsub/*.xpm samples/scrollsub/*.xpm
samples/scrollsub/*.xbm samples/scrollsub/*.xbm
@@ -1147,7 +1084,6 @@ samples/shaped/*.cpp
samples/shaped/*.h samples/shaped/*.h
samples/shaped/makefile* samples/shaped/makefile*
samples/shaped/*.rc samples/shaped/*.rc
samples/shaped/*.def
samples/shaped/*.bmp samples/shaped/*.bmp
samples/shaped/*.xpm samples/shaped/*.xpm
samples/shaped/*.xbm samples/shaped/*.xbm
@@ -1159,7 +1095,6 @@ samples/shaped/*.bkl
samples/splash/*.h samples/splash/*.h
samples/splash/*.cpp samples/splash/*.cpp
samples/splash/*.def
samples/splash/*.rc samples/splash/*.rc
samples/splash/makefile* samples/splash/makefile*
samples/splash/*.xbm samples/splash/*.xbm
@@ -1174,7 +1109,6 @@ samples/splash/*.bkl
samples/splitter/*.cpp samples/splitter/*.cpp
samples/splitter/*.h samples/splitter/*.h
samples/splitter/*.def
samples/splitter/*.rc samples/splitter/*.rc
samples/splitter/*.txt samples/splitter/*.txt
samples/splitter/makefile* samples/splitter/makefile*
@@ -1187,7 +1121,6 @@ samples/splitter/*.bkl
samples/sockets/*.cpp samples/sockets/*.cpp
samples/sockets/*.h samples/sockets/*.h
samples/sockets/*.def
samples/sockets/makefile* samples/sockets/makefile*
samples/sockets/client.wat samples/sockets/client.wat
samples/sockets/server.wat samples/sockets/server.wat
@@ -1212,7 +1145,6 @@ samples/sound/*.cpp
samples/sound/*.h samples/sound/*.h
samples/sound/makefile* samples/sound/makefile*
samples/sound/*.rc samples/sound/*.rc
samples/sound/*.def
samples/sound/*.ico samples/sound/*.ico
samples/sound/*.xpm samples/sound/*.xpm
samples/sound/*.bmp samples/sound/*.bmp
@@ -1224,7 +1156,6 @@ samples/statbar/*.cpp
samples/statbar/*.h samples/statbar/*.h
samples/statbar/makefile* samples/statbar/makefile*
samples/statbar/*.rc samples/statbar/*.rc
samples/statbar/*.def
samples/statbar/*.ico samples/statbar/*.ico
samples/statbar/*.xpm samples/statbar/*.xpm
samples/statbar/*.bmp samples/statbar/*.bmp
@@ -1236,7 +1167,6 @@ samples/taskbar/*.cpp
samples/taskbar/*.h samples/taskbar/*.h
samples/taskbar/makefile.* samples/taskbar/makefile.*
samples/taskbar/*.rc samples/taskbar/*.rc
samples/taskbar/*.def
samples/taskbar/*.bmp samples/taskbar/*.bmp
samples/taskbar/*.ico samples/taskbar/*.ico
samples/taskbar/*.txt samples/taskbar/*.txt
@@ -1246,7 +1176,6 @@ samples/text/*.cpp
samples/text/*.h samples/text/*.h
samples/text/makefile* samples/text/makefile*
samples/text/*.rc samples/text/*.rc
samples/text/*.def
samples/text/*.bmp samples/text/*.bmp
samples/text/*.xpm samples/text/*.xpm
samples/text/*.xbm samples/text/*.xbm
@@ -1260,7 +1189,6 @@ samples/thread/*.cpp
samples/thread/*.h samples/thread/*.h
samples/thread/makefile* samples/thread/makefile*
samples/thread/*.rc samples/thread/*.rc
samples/thread/*.def
samples/thread/*.bmp samples/thread/*.bmp
samples/thread/*.xpm samples/thread/*.xpm
samples/thread/*.xbm samples/thread/*.xbm
@@ -1272,7 +1200,6 @@ samples/thread/*.bkl
samples/typetest/*.cpp samples/typetest/*.cpp
samples/typetest/*.h samples/typetest/*.h
samples/typetest/*.def
samples/typetest/*.rc samples/typetest/*.rc
samples/typetest/*.txt samples/typetest/*.txt
samples/typetest/makefile* samples/typetest/makefile*
@@ -1284,7 +1211,6 @@ samples/typetest/*.bkl
samples/toolbar/*.cpp samples/toolbar/*.cpp
samples/toolbar/*.h samples/toolbar/*.h
samples/toolbar/*.def
samples/toolbar/makefile* samples/toolbar/makefile*
samples/toolbar/*.txt samples/toolbar/*.txt
samples/toolbar/*.xbm samples/toolbar/*.xbm
@@ -1300,7 +1226,6 @@ samples/toolbar/*.bkl
samples/treectrl/*.cpp samples/treectrl/*.cpp
samples/treectrl/*.h samples/treectrl/*.h
samples/treectrl/*.def
samples/treectrl/*.rc samples/treectrl/*.rc
samples/treectrl/*.txt samples/treectrl/*.txt
samples/treectrl/makefile* samples/treectrl/makefile*
@@ -1317,7 +1242,6 @@ samples/treectrl/*.bkl
samples/validate/*.cpp samples/validate/*.cpp
samples/validate/*.h samples/validate/*.h
samples/validate/*.def
samples/validate/*.rc samples/validate/*.rc
samples/validate/*.inf samples/validate/*.inf
samples/validate/*.txt samples/validate/*.txt
@@ -1339,7 +1263,6 @@ samples/widgets/*.cpp
samples/widgets/*.h samples/widgets/*.h
samples/widgets/makefile* samples/widgets/makefile*
samples/widgets/*.rc samples/widgets/*.rc
samples/widgets/*.def
samples/widgets/*.ico samples/widgets/*.ico
samples/widgets/*.xpm samples/widgets/*.xpm
samples/widgets/*.txt samples/widgets/*.txt
@@ -1352,7 +1275,6 @@ samples/wizard/*.cpp
samples/wizard/*.h samples/wizard/*.h
samples/wizard/makefile* samples/wizard/makefile*
samples/wizard/*.rc samples/wizard/*.rc
samples/wizard/*.def
samples/wizard/*.bmp samples/wizard/*.bmp
samples/wizard/*.xpm samples/wizard/*.xpm
samples/wizard/*.xbm samples/wizard/*.xbm
@@ -1367,7 +1289,6 @@ demos/makefile*
demos/bombs/*.cpp demos/bombs/*.cpp
demos/bombs/*.h demos/bombs/*.h
demos/bombs/*.def
demos/bombs/makefile* demos/bombs/makefile*
demos/bombs/*.xbm demos/bombs/*.xbm
demos/bombs/*.xpm demos/bombs/*.xpm
@@ -1382,7 +1303,6 @@ demos/forty/*.cpp
demos/forty/*.h demos/forty/*.h
demos/forty/makefile* demos/forty/makefile*
demos/forty/*.rc demos/forty/*.rc
demos/forty/*.def
demos/forty/*.bmp demos/forty/*.bmp
demos/forty/*.xpm demos/forty/*.xpm
demos/forty/*.xbm demos/forty/*.xbm
@@ -1396,7 +1316,6 @@ demos/forty/*.htm
demos/fractal/*.cpp demos/fractal/*.cpp
demos/fractal/*.h demos/fractal/*.h
demos/fractal/*.def
demos/fractal/makefile* demos/fractal/makefile*
demos/fractal/*.xbm demos/fractal/*.xbm
demos/fractal/*.xpm demos/fractal/*.xpm
@@ -1410,7 +1329,6 @@ demos/life/*.inc
demos/life/*.h demos/life/*.h
demos/life/makefile* demos/life/makefile*
demos/life/*.rc demos/life/*.rc
demos/life/*.def
demos/life/*.ico demos/life/*.ico
demos/life/*.xpm demos/life/*.xpm
demos/life/*.txt demos/life/*.txt
@@ -1422,7 +1340,6 @@ demos/life/*.bkl
demos/poem/*.cpp demos/poem/*.cpp
demos/poem/*.h demos/poem/*.h
demos/poem/*.def
demos/poem/*.rc demos/poem/*.rc
demos/poem/*.inf demos/poem/*.inf
demos/poem/*.txt demos/poem/*.txt
@@ -1437,7 +1354,6 @@ demos/poem/*.bkl
demos/dbbrowse/*.cpp demos/dbbrowse/*.cpp
demos/dbbrowse/*.h demos/dbbrowse/*.h
demos/dbbrowse/*.def
demos/dbbrowse/*.rc demos/dbbrowse/*.rc
demos/dbbrowse/*.inf demos/dbbrowse/*.inf
demos/dbbrowse/*.txt demos/dbbrowse/*.txt

View File

@@ -1,6 +1,5 @@
utils/HelpGen/src/*.h utils/HelpGen/src/*.h
utils/HelpGen/src/*.cpp utils/HelpGen/src/*.cpp
utils/HelpGen/src/*.def
utils/HelpGen/src/*.rc utils/HelpGen/src/*.rc
utils/HelpGen/src/makefile* utils/HelpGen/src/makefile*
utils/HelpGen/src/*.bkl utils/HelpGen/src/*.bkl
@@ -26,7 +25,6 @@ utils/emulator/src/*.sty
utils/emulator/src/*.ini utils/emulator/src/*.ini
utils/emulator/src/*.bmp utils/emulator/src/*.bmp
utils/emulator/src/*.ico utils/emulator/src/*.ico
utils/emulator/src/*.def
utils/emulator/src/*.rc utils/emulator/src/*.rc
utils/emulator/src/*.wxe utils/emulator/src/*.wxe
utils/emulator/src/*.jpg utils/emulator/src/*.jpg
@@ -36,7 +34,6 @@ utils/emulator/docs/*.jpg
utils/helpview/src/*.h utils/helpview/src/*.h
utils/helpview/src/*.cpp utils/helpview/src/*.cpp
utils/helpview/src/*.def
utils/helpview/src/*.rc utils/helpview/src/*.rc
utils/helpview/src/makefile* utils/helpview/src/makefile*
utils/helpview/src/*.xbm utils/helpview/src/*.xbm
@@ -51,7 +48,6 @@ utils/helpview/src/bitmaps/*.xpm
utils/configtool/src/*.h utils/configtool/src/*.h
utils/configtool/src/*.cpp utils/configtool/src/*.cpp
utils/configtool/src/*.def
utils/configtool/src/*.rc utils/configtool/src/*.rc
utils/configtool/src/makefile* utils/configtool/src/makefile*
utils/configtool/src/*.xbm utils/configtool/src/*.xbm

View File

@@ -164,7 +164,7 @@ provokes warnings from some compilers and to avoid them you should use the
pointers to {\tt double} you should use. pointers to {\tt double} you should use.
Note that the above macros are generally only useful for Note that the above macros are generally only useful for
wxObject types. There are seperate macros for declaring an array of a simple type, wxObject types. There are separate macros for declaring an array of a simple type,
such as an int. such as an int.
The following simple types are supported:\\ The following simple types are supported:\\

View File

@@ -97,7 +97,7 @@ Likewise, Sun, Mon, Tue, Wed, Thu, Fri, Sat, and Inv\_WeekDay are the values in
Finally, Inv\_Year is defined to be an invalid value for year parameter. Finally, Inv\_Year is defined to be an invalid value for year parameter.
\helpref{GetMonthName()}{wxdatetimegetmonthname} and \helpref{GetMonthName()}{wxdatetimegetmonthname} and
\helpref{GetWeekDayName}{wxdatetimegetweekdayname} functions use the followign \helpref{GetWeekDayName}{wxdatetimegetweekdayname} functions use the following
flags: flags:
\begin{verbatim} \begin{verbatim}

View File

@@ -166,7 +166,7 @@ creates the file with the given \arg{name} and writes \arg{text} to it, then
adds the file to the report. The \arg{filename} shouldn't contain the path. adds the file to the report. The \arg{filename} shouldn't contain the path.
Returns \true if file could be added successfully, \false if an IO error Returns \true if file could be added successfully, \false if an IO error
occured. occurred.
\membersection{wxDebugReport::DoAddCustomContext}\label{wxdebugreportdoaddcustomcontext} \membersection{wxDebugReport::DoAddCustomContext}\label{wxdebugreportdoaddcustomcontext}

View File

@@ -41,7 +41,7 @@ running the \helpref{text}{sampletext} wxWidgets sample and pressing some keys
in any of the text controls shown in it. in any of the text controls shown in it.
{\bf Note:} If a key down ({\tt EVT\_KEY\_DOWN}) event is caught and {\bf Note:} If a key down ({\tt EVT\_KEY\_DOWN}) event is caught and
the event handler does not call {\tt event.Skip()} then the coresponding the event handler does not call {\tt event.Skip()} then the corresponding
char event ({\tt EVT\_CHAR}) will not happen. This is by design and char event ({\tt EVT\_CHAR}) will not happen. This is by design and
enables the programs that handle both types of events to be a bit enables the programs that handle both types of events to be a bit
simpler. simpler.

View File

@@ -145,7 +145,7 @@ Get the userData item attribute.
\constfunc{wxWindow*}{GetWindow}{\void} \constfunc{wxWindow*}{GetWindow}{\void}
If this item is trackign a window then return it. NULL otherwise. If this item is tracking a window then return it. NULL otherwise.
\membersection{wxSizerItem::IsShown}\label{wxsizeritemisshown} \membersection{wxSizerItem::IsShown}\label{wxsizeritemisshown}

View File

@@ -560,8 +560,8 @@ The {\bf wxSOCKET\_REUSEADDR} flag controls the use of the SO\_REUSEADDR standar
setsockopt() flag. This flag allows the socket to bind to a port that is already in use. setsockopt() flag. This flag allows the socket to bind to a port that is already in use.
This is mostly used on UNIX-based systems to allow rapid starting and stopping of a server - This is mostly used on UNIX-based systems to allow rapid starting and stopping of a server -
otherwise you may have to wait several minutes for the port to become available. otherwise you may have to wait several minutes for the port to become available.
This option can have suprising platform dependent behavior, check the documentation for This option can have surprising platform dependent behavior, check the documentation for
your platforms implementation of setsockopt(). your platform's implementation of setsockopt().
So: So:

View File

@@ -98,7 +98,7 @@ Copies this URI from another URI.
\constfunc{wxString}{BuildURI}{\void} \constfunc{wxString}{BuildURI}{\void}
Builds the URI from its individual components and adds proper seperators. Builds the URI from its individual components and adds proper separators.
If the URI is not a reference or is not resolved, If the URI is not a reference or is not resolved,
the URI that is returned from Get is the same one the URI that is returned from Get is the same one
@@ -109,7 +109,7 @@ passed to Create.
\constfunc{wxString}{BuildUnescapedURI}{\void} \constfunc{wxString}{BuildUnescapedURI}{\void}
Builds the URI from its individual components, adds proper seperators, and Builds the URI from its individual components, adds proper separators, and
returns escape sequences to normal characters. returns escape sequences to normal characters.
Note that it is preferred to call this over Unescape(BuildURI()) since Note that it is preferred to call this over Unescape(BuildURI()) since

View File

@@ -1257,7 +1257,7 @@ buffer (which must be writable, of course) you might call it like this:
\end{verbatim} \end{verbatim}
Note that the exact usage of this depends on whether on not wxUSE\_STL is enabled. If Note that the exact usage of this depends on whether on not wxUSE\_STL is enabled. If
wxUSE\_STL is enabled, wxStringBuffer creates a seperate empty character buffer, and wxUSE\_STL is enabled, wxStringBuffer creates a separate empty character buffer, and
if wxUSE\_STL is disabled, it uses GetWriteBuf() from wxString, keeping the same buffer if wxUSE\_STL is disabled, it uses GetWriteBuf() from wxString, keeping the same buffer
wxString uses intact. In other words, relying on wxStringBuffer containing the old wxString uses intact. In other words, relying on wxStringBuffer containing the old
wxString data is probably not a good idea if you want to build your program in both wxString data is probably not a good idea if you want to build your program in both
@@ -1322,7 +1322,7 @@ of the string, you might call it like this:
\end{verbatim} \end{verbatim}
Note that the exact usage of this depends on whether on not wxUSE\_STL is enabled. If Note that the exact usage of this depends on whether on not wxUSE\_STL is enabled. If
wxUSE\_STL is enabled, wxStringBuffer creates a seperate empty character buffer, and wxUSE\_STL is enabled, wxStringBuffer creates a separate empty character buffer, and
if wxUSE\_STL is disabled, it uses GetWriteBuf() from wxString, keeping the same buffer if wxUSE\_STL is disabled, it uses GetWriteBuf() from wxString, keeping the same buffer
wxString uses intact. In other words, relying on wxStringBuffer containing the old wxString uses intact. In other words, relying on wxStringBuffer containing the old
wxString data is probably not a good idea if you want to build your program in both wxString data is probably not a good idea if you want to build your program in both

View File

@@ -111,7 +111,7 @@ is allowed to register new object handlers within XRC and extend it to accept
new <object> classes (and therefore different <object>'s child nodes). new <object> classes (and therefore different <object>'s child nodes).
<object_ref> node is identical to <object>, except that it does _not_ have <object_ref> node is identical to <object>, except that it does _not_ have
"class" property and has additional required property "ref". It's concept is "class" property and has additional required property "ref". Its concept is
similar to Unix symlinks: value of the "ref" property is equal to the value of similar to Unix symlinks: value of the "ref" property is equal to the value of
"name" property of some existing node (called referred node) in the resources "name" property of some existing node (called referred node) in the resources
(not necessary top-level). Referred node's "class" property and all subnodes (not necessary top-level). Referred node's "class" property and all subnodes

View File

@@ -11,7 +11,7 @@
// VC++ IDE predefines _DEBUG and _UNICODE for the new projects itself, but // VC++ IDE predefines _DEBUG and _UNICODE for the new projects itself, but
// the other symbols (WXUSINGDLL, __WXUNIVERSAL__, ...) should be defined // the other symbols (WXUSINGDLL, __WXUNIVERSAL__, ...) should be defined
// explicitely! // explicitly!
#ifdef _MSC_VER #ifdef _MSC_VER
#ifdef _UNICODE #ifdef _UNICODE

View File

@@ -263,7 +263,7 @@ public:
// version does the normal processing (i.e. shows the usual assert failure // version does the normal processing (i.e. shows the usual assert failure
// dialog box) // dialog box)
// //
// the arguments are the place where the assert occured, the text of the // the arguments are the place where the assert occurred, the text of the
// assert itself and the user-specified message // assert itself and the user-specified message
#ifdef __WXDEBUG__ #ifdef __WXDEBUG__
virtual void OnAssert(const wxChar *file, virtual void OnAssert(const wxChar *file,

View File

@@ -174,7 +174,7 @@ public:
// parse the command line, return 0 if ok, -1 if "-h" or "--help" option // parse the command line, return 0 if ok, -1 if "-h" or "--help" option
// was encountered and the help message was given or a positive value if a // was encountered and the help message was given or a positive value if a
// syntax error occured // syntax error occurred
// //
// if showUsage is true, Usage() is called in case of syntax error or if // if showUsage is true, Usage() is called in case of syntax error or if
// help was requested // help was requested

View File

@@ -1150,7 +1150,7 @@ public:
return wxTimeSpan(*this).Multiply(n); return wxTimeSpan(*this).Multiply(n);
} }
// return this timespan with inversed sign // return this timespan with opposite sign
wxTimeSpan Negate() const { return wxTimeSpan(-GetValue()); } wxTimeSpan Negate() const { return wxTimeSpan(-GetValue()); }
// negate the value of the timespan // negate the value of the timespan
wxTimeSpan& Neg() { m_diff = -GetValue(); return *this; } wxTimeSpan& Neg() { m_diff = -GetValue(); return *this; }

View File

@@ -789,7 +789,7 @@ wxDbGetDataSource(HENV henv, wxChar *Dsn, SWORD DsnMaxLength, wxChar *DsDesc,
// Change this to 0 to remove use of all deprecated functions // Change this to 0 to remove use of all deprecated functions
#if wxODBC_BACKWARD_COMPATABILITY #if wxODBC_BACKWARD_COMPATABILITY
//################################################################################# //#################################################################################
//############### DEPRECATED functions for backward compatability ################# //############### DEPRECATED functions for backward compatibility #################
//################################################################################# //#################################################################################
// Backward compability structures/classes. This will eventually go away // Backward compability structures/classes. This will eventually go away

View File

@@ -360,7 +360,7 @@ public:
// Change this to 0 to remove use of all deprecated functions // Change this to 0 to remove use of all deprecated functions
#if wxODBC_BACKWARD_COMPATABILITY #if wxODBC_BACKWARD_COMPATABILITY
//################################################################################# //#################################################################################
//############### DEPRECATED functions for backward compatability ################# //############### DEPRECATED functions for backward compatibility #################
//################################################################################# //#################################################################################
// Backward compability. These will eventually go away // Backward compability. These will eventually go away

View File

@@ -1899,7 +1899,7 @@ enum
wxTOOL_RIGHT wxTOOL_RIGHT
}; };
/* the values of the format constants should be the same as correspondign */ /* the values of the format constants should be the same as corresponding */
/* CF_XXX constants in Windows API */ /* CF_XXX constants in Windows API */
enum wxDataFormatId enum wxDataFormatId
{ {

View File

@@ -249,7 +249,7 @@ public:
// return all modules/shared libraries in the address space of this process // return all modules/shared libraries in the address space of this process
// //
// returns an empty array if not implemented or an error occured // returns an empty array if not implemented or an error occurred
static wxDynamicLibraryDetailsArray ListLoaded(); static wxDynamicLibraryDetailsArray ListLoaded();
// return platform-specific name of dynamic library with proper extension // return platform-specific name of dynamic library with proper extension

View File

@@ -2410,7 +2410,7 @@ protected:
// NB: This method is intentionally *not* inside wxUSE_VALIDATORS! // NB: This method is intentionally *not* inside wxUSE_VALIDATORS!
// It is part of wxBase which doesn't use validators and the code // It is part of wxBase which doesn't use validators and the code
// is compiled out when building wxBase w/o GUI classes, which affects // is compiled out when building wxBase w/o GUI classes, which affects
// binary compatiblity and wxBase library can't be used by GUI // binary compatibility and wxBase library can't be used by GUI
// ports. // ports.
virtual bool TryValidator(wxEvent& WXUNUSED(event)) { return false; } virtual bool TryValidator(wxEvent& WXUNUSED(event)) { return false; }

View File

@@ -62,7 +62,7 @@ public:
// read all data from the file into a string (useful for text files) // read all data from the file into a string (useful for text files)
bool ReadAll(wxString *str, wxMBConv& conv = wxConvUTF8); bool ReadAll(wxString *str, wxMBConv& conv = wxConvUTF8);
// returns number of bytes read - use Eof() and Error() to see if an error // returns number of bytes read - use Eof() and Error() to see if an error
// occured or not // occurred or not
size_t Read(void *pBuf, size_t nCount); size_t Read(void *pBuf, size_t nCount);
// returns the number of bytes written // returns the number of bytes written
size_t Write(const void *pBuf, size_t nCount); size_t Write(const void *pBuf, size_t nCount);
@@ -92,7 +92,7 @@ public:
bool IsOpened() const { return m_fp != NULL; } bool IsOpened() const { return m_fp != NULL; }
// is end of file reached? // is end of file reached?
bool Eof() const { return feof(m_fp) != 0; } bool Eof() const { return feof(m_fp) != 0; }
// is an error occured? // has an error occurred?
bool Error() const { return ferror(m_fp) != 0; } bool Error() const { return ferror(m_fp) != 0; }
// get the file name // get the file name
const wxString& GetName() const { return m_name; } const wxString& GetName() const { return m_name; }

View File

@@ -125,7 +125,7 @@ public:
bool IsOpened() const { return m_fd != fd_invalid; } bool IsOpened() const { return m_fd != fd_invalid; }
// is end of file reached? // is end of file reached?
bool Eof() const; bool Eof() const;
// has an error occured? // has an error occurred?
bool Error() const { return m_error; } bool Error() const { return m_error; }
// type such as disk or pipe // type such as disk or pipe
wxFileKind GetKind() const { return wxGetFileKind(m_fd); } wxFileKind GetKind() const { return wxGetFileKind(m_fd); }

View File

@@ -226,7 +226,7 @@ private:
// the currently default encoding: by default, it's the default system // the currently default encoding: by default, it's the default system
// encoding, but may be changed by the application using // encoding, but may be changed by the application using
// SetDefaultEncoding() to make all subsequent fonts created without // SetDefaultEncoding() to make all subsequent fonts created without
// specifing encoding parameter using this encoding // specifying encoding parameter using this encoding
static wxFontEncoding ms_encodingDefault; static wxFontEncoding ms_encodingDefault;
}; };

View File

@@ -153,8 +153,8 @@ private:
}; };
// State information of a search action. I'd have prefered to make this a nested // State information of a search action. I'd have preferred to make this a
// class inside wxHtmlHelpData, but that's against coding standards :-( // nested class inside wxHtmlHelpData, but that's against coding standards :-(
// Never construct this class yourself, obtain a copy from // Never construct this class yourself, obtain a copy from
// wxHtmlHelpData::PrepareKeywordSearch(const wxString& key) // wxHtmlHelpData::PrepareKeywordSearch(const wxString& key)
class WXDLLIMPEXP_HTML wxHtmlSearchStatus class WXDLLIMPEXP_HTML wxHtmlSearchStatus

View File

@@ -89,7 +89,7 @@ public:
// Set HTML page and display it. !! source is HTML document itself, // Set HTML page and display it. !! source is HTML document itself,
// it is NOT address/filename of HTML document. If you want to // it is NOT address/filename of HTML document. If you want to
// specify document location, use LoadPage() istead // specify document location, use LoadPage() istead
// Return value : false if an error occured, true otherwise // Return value : false if an error occurred, true otherwise
bool SetPage(const wxString& source); bool SetPage(const wxString& source);
// Append to current page // Append to current page

View File

@@ -378,7 +378,7 @@ public:
const wxChar *szShort = (const wxChar *) NULL, // dir prefix (for msg files) const wxChar *szShort = (const wxChar *) NULL, // dir prefix (for msg files)
const wxChar *szLocale = (const wxChar *) NULL, // locale (for setlocale) const wxChar *szLocale = (const wxChar *) NULL, // locale (for setlocale)
bool bLoadDefault = true, // preload wxstd.mo? bool bLoadDefault = true, // preload wxstd.mo?
bool bConvertEncoding = false) // convert Win<->Unix if neccessary? bool bConvertEncoding = false) // convert Win<->Unix if necessary?
{ {
DoCommonInit(); DoCommonInit();
@@ -407,7 +407,7 @@ public:
// restores old locale // restores old locale
~wxLocale(); ~wxLocale();
// Try to get user's (or OS's) prefered language setting. // Try to get user's (or OS's) preferred language setting.
// Return wxLANGUAGE_UNKNOWN if language-guessing algorithm failed // Return wxLANGUAGE_UNKNOWN if language-guessing algorithm failed
static int GetSystemLanguage(); static int GetSystemLanguage();

View File

@@ -984,7 +984,7 @@
#define wxODBC_FWD_ONLY_CURSORS 1 #define wxODBC_FWD_ONLY_CURSORS 1
// Default is 0. Set to 1 to use the deprecated classes, enum types, function, // Default is 0. Set to 1 to use the deprecated classes, enum types, function,
// member variables. With a setting of 1, full backward compatability with the // member variables. With a setting of 1, full backward compatibility with the
// 2.0.x release is possible. It is STRONGLY recommended that this be set to 0, // 2.0.x release is possible. It is STRONGLY recommended that this be set to 0,
// as future development will be done only on the non-deprecated // as future development will be done only on the non-deprecated
// functions/classes/member variables/etc. // functions/classes/member variables/etc.

View File

@@ -129,7 +129,7 @@ protected:
*m_subMenu; // our sub menu or NULL *m_subMenu; // our sub menu or NULL
wxString m_text, // label of the item wxString m_text, // label of the item
m_help; // the help string for the item m_help; // the help string for the item
wxItemKind m_kind; // seperator/normal/check/radio item? wxItemKind m_kind; // separator/normal/check/radio item?
bool m_isChecked; // is checked? bool m_isChecked; // is checked?
bool m_isEnabled; // is enabled? bool m_isEnabled; // is enabled?

View File

@@ -320,7 +320,7 @@ public:
wxFileType *GetFileTypeFromMimeType(const wxString& mimeType); wxFileType *GetFileTypeFromMimeType(const wxString& mimeType);
// other operations: return true if there were no errors or false if there // other operations: return true if there were no errors or false if there
// were some unreckognized entries (the good entries are always read anyhow) // were some unrecognized entries (the good entries are always read anyhow)
// //
// FIXME: These ought to be private ?? // FIXME: These ought to be private ??

View File

@@ -24,7 +24,7 @@ struct _EXCEPTION_POINTERS;
enum enum
{ {
// we always report where the crash occured // we always report where the crash occurred
wxCRASH_REPORT_LOCATION = 0, wxCRASH_REPORT_LOCATION = 0,
// if this flag is given, the call stack is dumped // if this flag is given, the call stack is dumped

View File

@@ -46,7 +46,7 @@ public:
wxWindowDC(wxWindow *win); wxWindowDC(wxWindow *win);
protected: protected:
// intiialize the newly created DC // initialize the newly created DC
void InitDC(); void InitDC();
// override some base class virtuals // override some base class virtuals

View File

@@ -201,7 +201,7 @@ public:
// get the accel table for all the menus // get the accel table for all the menus
const wxAcceleratorTable& GetAccelTable() const { return m_accelTable; } const wxAcceleratorTable& GetAccelTable() const { return m_accelTable; }
// update the accel table (must be called after adding/deletign a menu) // update the accel table (must be called after adding/deleting a menu)
void RebuildAccelTable(); void RebuildAccelTable();
#endif // wxUSE_ACCEL #endif // wxUSE_ACCEL

View File

@@ -983,7 +983,7 @@
#define wxODBC_FWD_ONLY_CURSORS 1 #define wxODBC_FWD_ONLY_CURSORS 1
// Default is 0. Set to 1 to use the deprecated classes, enum types, function, // Default is 0. Set to 1 to use the deprecated classes, enum types, function,
// member variables. With a setting of 1, full backward compatability with the // member variables. With a setting of 1, full backward compatibility with the
// 2.0.x release is possible. It is STRONGLY recommended that this be set to 0, // 2.0.x release is possible. It is STRONGLY recommended that this be set to 0,
// as future development will be done only on the non-deprecated // as future development will be done only on the non-deprecated
// functions/classes/member variables/etc. // functions/classes/member variables/etc.

View File

@@ -825,7 +825,7 @@
#define wxODBC_FWD_ONLY_CURSORS 1 #define wxODBC_FWD_ONLY_CURSORS 1
// Default is 0. Set to 1 to use the deprecated classes, enum types, function, // Default is 0. Set to 1 to use the deprecated classes, enum types, function,
// member variables. With a setting of 1, full backward compatability with the // member variables. With a setting of 1, full backward compatibility with the
// 2.0.x release is possible. It is STRONGLY recommended that this be set to 0, // 2.0.x release is possible. It is STRONGLY recommended that this be set to 0,
// as future development will be done only on the non-deprecated // as future development will be done only on the non-deprecated
// functions/classes/member variables/etc. // functions/classes/member variables/etc.

View File

@@ -983,7 +983,7 @@
#define wxODBC_FWD_ONLY_CURSORS 1 #define wxODBC_FWD_ONLY_CURSORS 1
// Default is 0. Set to 1 to use the deprecated classes, enum types, function, // Default is 0. Set to 1 to use the deprecated classes, enum types, function,
// member variables. With a setting of 1, full backward compatability with the // member variables. With a setting of 1, full backward compatibility with the
// 2.0.x release is possible. It is STRONGLY recommended that this be set to 0, // 2.0.x release is possible. It is STRONGLY recommended that this be set to 0,
// as future development will be done only on the non-deprecated // as future development will be done only on the non-deprecated
// functions/classes/member variables/etc. // functions/classes/member variables/etc.

View File

@@ -245,7 +245,7 @@ public:
const wxAcceleratorTable& GetAccelTable(void) const { return m_vAccelTable; } const wxAcceleratorTable& GetAccelTable(void) const { return m_vAccelTable; }
// //
// Update the accel table (must be called after adding/deletign a menu) // Update the accel table (must be called after adding/deleting a menu)
// //
void RebuildAccelTable(void); void RebuildAccelTable(void);
#endif // wxUSE_ACCEL #endif // wxUSE_ACCEL

View File

@@ -24,7 +24,7 @@ public:
// The program directory can be determined automatically from argv[0], // The program directory can be determined automatically from argv[0],
// this function is automatically called from application initialisation. // this function is automatically called from application initialisation.
// If you override the initialisation routine, you should call it // If you override the initialisation routine, you should call it
// explicitely yourself. // explicitly yourself.
static void SetInstallPrefix(const wxString& prefix); static void SetInstallPrefix(const wxString& prefix);
// get the program installation prefix // get the program installation prefix

View File

@@ -46,7 +46,7 @@ public:
wxWindowDC(wxWindow *win); wxWindowDC(wxWindow *win);
protected: protected:
// intiialize the newly created DC // initialize the newly created DC
void InitDC(); void InitDC();
// override some base class virtuals // override some base class virtuals

View File

@@ -174,7 +174,7 @@ public:
// get the accel table for all the menus // get the accel table for all the menus
const wxAcceleratorTable& GetAccelTable() const { return m_accelTable; } const wxAcceleratorTable& GetAccelTable() const { return m_accelTable; }
// update the accel table (must be called after adding/deletign a menu) // update the accel table (must be called after adding/deleting a menu)
void RebuildAccelTable(); void RebuildAccelTable();
#endif // wxUSE_ACCEL #endif // wxUSE_ACCEL

View File

@@ -939,7 +939,7 @@
#define wxODBC_FWD_ONLY_CURSORS 0 #define wxODBC_FWD_ONLY_CURSORS 0
// Default is 0. Set to 1 to use the deprecated classes, enum types, function, // Default is 0. Set to 1 to use the deprecated classes, enum types, function,
// member variables. With a setting of 1, full backward compatability with the // member variables. With a setting of 1, full backward compatibility with the
// 2.0.x release is possible. It is STRONGLY recommended that this be set to 0, // 2.0.x release is possible. It is STRONGLY recommended that this be set to 0,
// as future development will be done only on the non-deprecated // as future development will be done only on the non-deprecated
// functions/classes/member variables/etc. // functions/classes/member variables/etc.

View File

@@ -129,7 +129,7 @@ protected:
const wxString& arg = wxEmptyString); const wxString& arg = wxEmptyString);
// get the server reply, return the first character of the reply code, // get the server reply, return the first character of the reply code,
// '1'..'5' for normal FTP replies, 0 (*not* '0') if an error occured // '1'..'5' for normal FTP replies, 0 (*not* '0') if an error occurred
char GetResult(); char GetResult();
// check that the result is equal to expected value // check that the result is equal to expected value

View File

@@ -153,7 +153,7 @@ typedef wxPixelFormat<unsigned char, 24, 0, 1, 2> wxImagePixelFormat;
// the (most common) native bitmap format without alpha support // the (most common) native bitmap format without alpha support
#if defined(__WXMSW__) #if defined(__WXMSW__)
// under MSW the RGB components are inversed, they're in BGR order // under MSW the RGB components are reversed, they're in BGR order
typedef wxPixelFormat<unsigned char, 24, 2, 1, 0> wxNativePixelFormat; typedef wxPixelFormat<unsigned char, 24, 2, 1, 0> wxNativePixelFormat;
#define wxPIXEL_FORMAT_ALPHA 3 #define wxPIXEL_FORMAT_ALPHA 3

View File

@@ -964,7 +964,7 @@
#define wxODBC_FWD_ONLY_CURSORS 1 #define wxODBC_FWD_ONLY_CURSORS 1
// Default is 0. Set to 1 to use the deprecated classes, enum types, function, // Default is 0. Set to 1 to use the deprecated classes, enum types, function,
// member variables. With a setting of 1, full backward compatability with the // member variables. With a setting of 1, full backward compatibility with the
// 2.0.x release is possible. It is STRONGLY recommended that this be set to 0, // 2.0.x release is possible. It is STRONGLY recommended that this be set to 0,
// as future development will be done only on the non-deprecated // as future development will be done only on the non-deprecated
// functions/classes/member variables/etc. // functions/classes/member variables/etc.

View File

@@ -39,7 +39,7 @@
class WXDLLEXPORT wxSpinButtonBase : public wxControl class WXDLLEXPORT wxSpinButtonBase : public wxControl
{ {
public: public:
// ctor intiializes the range with the default (0..100) values // ctor initializes the range with the default (0..100) values
wxSpinButtonBase() { m_min = 0; m_max = 100; } wxSpinButtonBase() { m_min = 0; m_max = 100; }
// accessors // accessors

View File

@@ -223,7 +223,7 @@ public:
protected: protected:
// do read up to size bytes of data into the provided buffer // do read up to size bytes of data into the provided buffer
// //
// this method should return 0 if EOF has been reached or an error occured // this method should return 0 if EOF has been reached or an error occurred
// (m_lasterror should be set accordingly as well) or the number of bytes // (m_lasterror should be set accordingly as well) or the number of bytes
// read // read
virtual size_t OnSysRead(void *buffer, size_t size) = 0; virtual size_t OnSysRead(void *buffer, size_t size) = 0;

View File

@@ -359,7 +359,7 @@ END_DECLARE_EVENT_TYPES()
#define EVT_TREE_BEGIN_DRAG(id, fn) wx__DECLARE_TREEEVT(BEGIN_DRAG, id, fn) #define EVT_TREE_BEGIN_DRAG(id, fn) wx__DECLARE_TREEEVT(BEGIN_DRAG, id, fn)
#define EVT_TREE_BEGIN_RDRAG(id, fn) wx__DECLARE_TREEEVT(BEGIN_RDRAG, id, fn) #define EVT_TREE_BEGIN_RDRAG(id, fn) wx__DECLARE_TREEEVT(BEGIN_RDRAG, id, fn)
// GetItem() is the item on which the drop occured (if any) and GetPoint() the // GetItem() is the item on which the drop occurred (if any) and GetPoint() the
// current mouse coords // current mouse coords
#define EVT_TREE_END_DRAG(id, fn) wx__DECLARE_TREEEVT(END_DRAG, id, fn) #define EVT_TREE_END_DRAG(id, fn) wx__DECLARE_TREEEVT(END_DRAG, id, fn)

View File

@@ -1021,7 +1021,7 @@
#define wxODBC_FWD_ONLY_CURSORS 0 #define wxODBC_FWD_ONLY_CURSORS 0
// Default is 0. Set to 1 to use the deprecated classes, enum types, function, // Default is 0. Set to 1 to use the deprecated classes, enum types, function,
// member variables. With a setting of 1, full backward compatability with the // member variables. With a setting of 1, full backward compatibility with the
// 2.0.x release is possible. It is STRONGLY recommended that this be set to 0, // 2.0.x release is possible. It is STRONGLY recommended that this be set to 0,
// as future development will be done only on the non-deprecated // as future development will be done only on the non-deprecated
// functions/classes/member variables/etc. // functions/classes/member variables/etc.

View File

@@ -23,7 +23,7 @@ public:
// //
// under some systems (currently only Linux) the program directory can be // under some systems (currently only Linux) the program directory can be
// determined automatically but for portable programs you should always set // determined automatically but for portable programs you should always set
// it explicitely // it explicitly
void SetInstallPrefix(const wxString& prefix); void SetInstallPrefix(const wxString& prefix);
// get the program installation prefix // get the program installation prefix

View File

@@ -310,7 +310,7 @@ public:
// Creates an object (menu, dialog, control, ...) from an XML node. // Creates an object (menu, dialog, control, ...) from an XML node.
// Should check for validity. // Should check for validity.
// parent is a higher-level object (usually window, dialog or panel) // parent is a higher-level object (usually window, dialog or panel)
// that is often neccessary to create the resource. // that is often necessary to create the resource.
// If instance is non-NULL it should not create a new instance via 'new' but // If instance is non-NULL it should not create a new instance via 'new' but
// should rather use this one, and call its Create method. // should rather use this one, and call its Create method.
wxObject *CreateResource(wxXmlNode *node, wxObject *parent, wxObject *CreateResource(wxXmlNode *node, wxObject *parent,

View File

@@ -2995,7 +2995,7 @@ static void TestVCardRead()
wxPrintf(_T("Full name from wxVCard API: %s\n"), value.c_str()); wxPrintf(_T("Full name from wxVCard API: %s\n"), value.c_str());
// now show how to deal with multiply occuring properties // now show how to deal with multiply occurring properties
DumpVCardAddresses(vcard); DumpVCardAddresses(vcard);
DumpVCardPhoneNumbers(vcard); DumpVCardPhoneNumbers(vcard);

View File

@@ -79,7 +79,7 @@ extern wxApp *DatabaseDemoApp;
/* /*
* This function will return the exact string(s) from the database engine * This function will return the exact string(s) from the database engine
* indicating all error conditions which have just occured during the * indicating all error conditions which have just occurred during the
* last call to the database engine. * last call to the database engine.
* *
* This demo uses the returned string by displaying it in a wxMessageBox. The * This demo uses the returned string by displaying it in a wxMessageBox. The

View File

@@ -1369,7 +1369,12 @@ SettingsDialog::SettingsDialog(wxWindow* win)
{ {
SetExtraStyle(wxDIALOG_EX_CONTEXTHELP|wxWS_EX_VALIDATE_RECURSIVELY); SetExtraStyle(wxDIALOG_EX_CONTEXTHELP|wxWS_EX_VALIDATE_RECURSIVELY);
Create(win, -1, _("Preferences"), wxDefaultPosition, wxDefaultSize); Create(win, -1, _("Preferences"), wxDefaultPosition, wxDefaultSize,
wxDEFAULT_DIALOG_STYLE
#ifndef __WXWINCE__
|wxRESIZE_BORDER
#endif
);
CreateButtons(wxOK|wxCANCEL|wxHELP); CreateButtons(wxOK|wxCANCEL|wxHELP);
wxBookCtrlBase* notebook = GetBookCtrl(); wxBookCtrlBase* notebook = GetBookCtrl();

View File

@@ -272,7 +272,7 @@ void MyFrame::OnHangUp(wxCommandEvent& WXUNUSED(event))
{ {
if ( wxGetApp().GetDialer()->HangUp() ) if ( wxGetApp().GetDialer()->HangUp() )
{ {
wxLogStatus(this, wxT("Connection was succesfully terminated.")); wxLogStatus(this, wxT("Connection was successfully terminated."));
} }
else else
{ {

View File

@@ -1730,7 +1730,7 @@ void DnDShapeFrame::OnDrag(wxMouseEvent& event)
{ {
default: default:
case wxDragError: case wxDragError:
wxLogError(wxT("An error occured during drag and drop operation")); wxLogError(wxT("An error occurred during drag and drop operation"));
break; break;
case wxDragNone: case wxDragNone:

View File

@@ -669,7 +669,7 @@ void MyCanvas::DrawDefault(wxDC& dc)
// Added by JACS to demonstrate bizarre behaviour. // Added by JACS to demonstrate bizarre behaviour.
// With a size of 70, we get a missing red RHS, // With a size of 70, we get a missing red RHS,
// and the hight is too small, so we get yellow // and the height is too small, so we get yellow
// showing. With a size of 40, it draws as expected: // showing. With a size of 40, it draws as expected:
// it just shows a white rectangle with red outline. // it just shows a white rectangle with red outline.
int totalWidth = 70; int totalWidth = 70;

View File

@@ -79,7 +79,7 @@ public:
// program startup // program startup
virtual bool OnInit(); virtual bool OnInit();
// 2nd-level exception handling: we get all the exceptions occuring in any // 2nd-level exception handling: we get all the exceptions occurring in any
// event handler here // event handler here
virtual bool OnExceptionInMainLoop(); virtual bool OnExceptionInMainLoop();

View File

@@ -82,7 +82,7 @@ nested item</LI>
<LI> <LI>
<UL> <UL>
<LI> <LI>
deeper nesting for check of mark allignment </LI> deeper nesting for check of mark alignment </LI>
<LI> <LI>
nested item 2</LI> nested item 2</LI>

View File

@@ -17,7 +17,7 @@
// //
// To use this sample, simply select Open File from the file menu, // To use this sample, simply select Open File from the file menu,
// select the file you want to play - and MediaPlayer will play the file in a // select the file you want to play - and MediaPlayer will play the file in a
// new notebook page, showing video if neccessary. // new notebook page, showing video if necessary.
// //
// You can select one of the menu options, or move the slider around // You can select one of the menu options, or move the slider around
// to manipulate what is playing. // to manipulate what is playing.

View File

@@ -6,6 +6,10 @@
* $Id$ * * $Id$ *
* * * *
* $Log$ * $Log$
* Revision 1.4 2005/05/31 09:19:38 JS
* Typo correction patch [ 1208110 ] Lots of typo corrections
* Olly Betts
*
* Revision 1.3 2004/08/06 17:27:18 ABX * Revision 1.3 2004/08/06 17:27:18 ABX
* Deleting void is undefined. * Deleting void is undefined.
* *
@@ -27,7 +31,7 @@
* always failed, must mkdir("~/.M") first) * always failed, must mkdir("~/.M") first)
* 2) "redesign" of "Folder properties" dialog and bug corrected, small change to * 2) "redesign" of "Folder properties" dialog and bug corrected, small change to
* MInputBox (it was too wide) * MInputBox (it was too wide)
* 3) bug in ProvFC when it didn't reckognize the books as being in the correct * 3) bug in ProvFC when it didn't recognize the books as being in the correct
* format (=> messages "can't reopen book") corrected * format (=> messages "can't reopen book") corrected
* 4) I tried to enhance MDialog_About(), but it didn't really work... oh well, * 4) I tried to enhance MDialog_About(), but it didn't really work... oh well,
* I've never said I was an artist * I've never said I was an artist

View File

@@ -290,7 +290,7 @@ void MyFrame::OnOpenConnection(wxCommandEvent& WXUNUSED(event))
// //
// Connect(addr, false) will issue a nonblocking connection request // Connect(addr, false) will issue a nonblocking connection request
// and return immediately. If the return value is true, then the // and return immediately. If the return value is true, then the
// connection has been already succesfully established. If it is // connection has been already successfully established. If it is
// false, you must wait for the request to complete, either with // false, you must wait for the request to complete, either with
// WaitOnConnect() or by watching wxSOCKET_CONNECTION / LOST // WaitOnConnect() or by watching wxSOCKET_CONNECTION / LOST
// events (please read the documentation). // events (please read the documentation).

View File

@@ -13,11 +13,11 @@
// //
// Impl notes: // Impl notes:
// There is no custom data source because doing so unneccesaraly sacrifices // There is no custom data source because doing so unnecessarily sacrifices
// some native autocompletion behavior (we would have to make our own - // some native autocompletion behavior (we would have to make our own -
// the SimpleComboBox sample does so in the developer folder that // the SimpleComboBox sample does so in the developer folder that
// comes with OSX). One reason you might want this would be to have // comes with OSX). One reason you might want this would be to have
// only one array or be able to display numbers by returned an NSNumber // only one array or be able to display numbers returned by an NSNumber
// from the methods. // from the methods.
// //
// One problem though is that wxCB_SORT isn't implemented... // One problem though is that wxCB_SORT isn't implemented...

View File

@@ -202,7 +202,7 @@ wxQTMediaBackend::~wxQTMediaBackend()
if(m_timer) if(m_timer)
Cleanup(); Cleanup();
//Note that ExitMovies() is not neccessary... //Note that ExitMovies() is not necessary...
ExitMovies(); ExitMovies();
} }
@@ -324,7 +324,7 @@ void wxQTMediaBackend::FinishLoad()
// //
//Here, if the parent of the control has a sizer - we //Here, if the parent of the control has a sizer - we
//tell it to recalculate the size of this control since //tell it to recalculate the size of this control since
//the user opened a seperate media file //the user opened a separate media file
// //
m_ctrl->InvalidateBestSize(); m_ctrl->InvalidateBestSize();
m_ctrl->GetParent()->Layout(); m_ctrl->GetParent()->Layout();

View File

@@ -159,21 +159,21 @@ long wxExecute(const wxString& command,
NSArray* theQuoteArguments = NSArray* theQuoteArguments =
[wxNSStringWithWxString(command) componentsSeparatedByString:@"\""]; [wxNSStringWithWxString(command) componentsSeparatedByString:@"\""];
NSMutableArray* theSeperatedArguments = NSMutableArray* theSeparatedArguments =
[NSMutableArray arrayWithCapacity:10]; [NSMutableArray arrayWithCapacity:10];
for (unsigned i = 0; i < [theQuoteArguments count]; ++i) for (unsigned i = 0; i < [theQuoteArguments count]; ++i)
{ {
[theSeperatedArguments addObjectsFromArray: [theSeparatedArguments addObjectsFromArray:
[[theQuoteArguments objectAtIndex:i] componentsSeparatedByString:@" "] [[theQuoteArguments objectAtIndex:i] componentsSeparatedByString:@" "]
]; ];
if(++i < [theQuoteArguments count]) if(++i < [theQuoteArguments count])
[theSeperatedArguments addObject:[theQuoteArguments objectAtIndex:i]]; [theSeparatedArguments addObject:[theQuoteArguments objectAtIndex:i]];
} }
[theTask setLaunchPath:[theSeperatedArguments objectAtIndex:0]]; [theTask setLaunchPath:[theSeparatedArguments objectAtIndex:0]];
[theTask setArguments:theSeperatedArguments]; [theTask setArguments:theSeparatedArguments];
[theTask launch]; [theTask launch];
if(sync & wxEXEC_ASYNC) if(sync & wxEXEC_ASYNC)

View File

@@ -128,7 +128,7 @@ wxSize wxBookCtrlBase::DoGetBestSize() const
bestSize.y = childBestSize.y; bestSize.y = childBestSize.y;
} }
// convert display area to window area, adding the size neccessary for the // convert display area to window area, adding the size necessary for the
// tabs // tabs
wxSize best = CalcSizeFromPage(bestSize); wxSize best = CalcSizeFromPage(bestSize);
CacheBestSize(best); CacheBestSize(best);

View File

@@ -2309,12 +2309,12 @@ wxString wxDateTime::Format(const wxChar *format, const TimeZone& tz) const
// find the YEAR which is a year in the strftime() range (1970 // find the YEAR which is a year in the strftime() range (1970
// - 2038) whose Jan 1 falls on the same week day as the Jan 1 // - 2038) whose Jan 1 falls on the same week day as the Jan 1
// of the real year. Then make a copy of the format and // of the real year. Then make a copy of the format and
// replace all occurences of YEAR in it with some unique // replace all occurrences of YEAR in it with some unique
// string not appearing anywhere else in it, then use // string not appearing anywhere else in it, then use
// strftime() to format the date in year YEAR and then replace // strftime() to format the date in year YEAR and then replace
// YEAR back by the real year and the unique replacement // YEAR back by the real year and the unique replacement
// string back with YEAR. Notice that "all occurences of YEAR" // string back with YEAR. Notice that "all occurrences of YEAR"
// means all occurences of 4 digit as well as 2 digit form! // means all occurrences of 4 digit as well as 2 digit form!
// //
// the bugs: we assume that neither of %c nor %x contains any // the bugs: we assume that neither of %c nor %x contains any
// fields which may change between the YEAR and real year. For // fields which may change between the YEAR and real year. For
@@ -2372,8 +2372,8 @@ wxString wxDateTime::Format(const wxChar *format, const TimeZone& tz) const
strYear.Printf(_T("%d"), year); strYear.Printf(_T("%d"), year);
strYear2.Printf(_T("%d"), year % 100); strYear2.Printf(_T("%d"), year % 100);
// find two strings not occuring in format (this is surely // find two strings not occurring in format (this is surely
// not optimal way of doing it... improvements welcome!) // not the optimal way of doing it... improvements welcome!)
wxString fmt = format; wxString fmt = format;
wxString replacement = (wxChar)-1; wxString replacement = (wxChar)-1;
while ( fmt.Find(replacement) != wxNOT_FOUND ) while ( fmt.Find(replacement) != wxNOT_FOUND )
@@ -2387,7 +2387,7 @@ wxString wxDateTime::Format(const wxChar *format, const TimeZone& tz) const
replacement << (wxChar)-2; replacement << (wxChar)-2;
} }
// replace all occurences of year with it // replace all occurrences of year with it
bool wasReplaced = fmt.Replace(strYear, replacement) > 0; bool wasReplaced = fmt.Replace(strYear, replacement) > 0;
if ( !wasReplaced ) if ( !wasReplaced )
wasReplaced = fmt.Replace(strYear2, replacement2) > 0; wasReplaced = fmt.Replace(strYear2, replacement2) > 0;
@@ -2414,14 +2414,14 @@ wxString wxDateTime::Format(const wxChar *format, const TimeZone& tz) const
: _T("%x"), : _T("%x"),
&tmAdjusted); &tmAdjusted);
// now replace the occurence of 1999 with the real year // now replace the occurrence of 1999 with the real year
wxString strYearReal, strYearReal2; wxString strYearReal, strYearReal2;
strYearReal.Printf(_T("%04d"), yearReal); strYearReal.Printf(_T("%04d"), yearReal);
strYearReal2.Printf(_T("%02d"), yearReal % 100); strYearReal2.Printf(_T("%02d"), yearReal % 100);
str.Replace(strYear, strYearReal); str.Replace(strYear, strYearReal);
str.Replace(strYear2, strYearReal2); str.Replace(strYear2, strYearReal2);
// and replace back all occurences of replacement string // and replace back all occurrences of replacement string
if ( wasReplaced ) if ( wasReplaced )
{ {
str.Replace(replacement2, strYear2); str.Replace(replacement2, strYear2);

View File

@@ -179,7 +179,7 @@ bool wxDbConnectInf::AllocHenv()
// Initialize the ODBC Environment for Database Operations // Initialize the ODBC Environment for Database Operations
if (SQLAllocEnv(&Henv) != SQL_SUCCESS) if (SQLAllocEnv(&Henv) != SQL_SUCCESS)
{ {
wxLogDebug(wxT("A problem occured while trying to get a connection to the data source")); wxLogDebug(wxT("A problem occurred while trying to get a connection to the data source"));
return false; return false;
} }
@@ -1781,16 +1781,16 @@ bool wxDb::DispAllErrors(HENV aHenv, HDBC aHdbc, HSTMT aHstmt)
/* /*
* This function is called internally whenever an error condition prevents the user's * This function is called internally whenever an error condition prevents the user's
* request from being executed. This function will query the datasource as to the * request from being executed. This function will query the datasource as to the
* actual error(s) that just occured on the previous request of the datasource. * actual error(s) that just occurred on the previous request of the datasource.
* *
* The function will retrieve each error condition from the datasource and * The function will retrieve each error condition from the datasource and
* Printf the codes/text values into a string which it then logs via logError(). * Printf the codes/text values into a string which it then logs via logError().
* If in DBDEBUG_CONSOLE mode, the constructed string will be displayed in the console * If in DBDEBUG_CONSOLE mode, the constructed string will be displayed in the console
* window and program execution will be paused until the user presses a key. * window and program execution will be paused until the user presses a key.
* *
* This function always returns a false, so that functions which call this function * This function always returns false, so that functions which call this function
* can have a line like "return (DispAllErrors(henv, hdbc));" to indicate the failure * can have a line like "return (DispAllErrors(henv, hdbc));" to indicate the failure
* of the users request, so that the calling code can then process the error msg log * of the user's request, so that the calling code can then process the error message log.
*/ */
{ {
wxString odbcErrMsg; wxString odbcErrMsg;
@@ -2507,7 +2507,7 @@ wxDbColInf *wxDb::GetColumns(wxChar *tableName[], const wxChar *userID)
* 1) The last array element of the tableName[] argument must be zero (null). * 1) The last array element of the tableName[] argument must be zero (null).
* This is how the end of the array is detected. * This is how the end of the array is detected.
* 2) This function returns an array of wxDbColInf structures. If no columns * 2) This function returns an array of wxDbColInf structures. If no columns
* were found, or an error occured, this pointer will be zero (null). THE * were found, or an error occurred, this pointer will be zero (null). THE
* CALLING FUNCTION IS RESPONSIBLE FOR DELETING THE MEMORY RETURNED WHEN IT * CALLING FUNCTION IS RESPONSIBLE FOR DELETING THE MEMORY RETURNED WHEN IT
* IS FINISHED WITH IT. i.e. * IS FINISHED WITH IT. i.e.
* *
@@ -2597,7 +2597,7 @@ wxDbColInf *wxDb::GetColumns(wxChar *tableName[], const wxChar *userID)
NULL, 0); // All columns NULL, 0); // All columns
} }
if (retcode != SQL_SUCCESS) if (retcode != SQL_SUCCESS)
{ // Error occured, abort { // Error occurred, abort
DispAllErrors(henv, hdbc, hstmt); DispAllErrors(henv, hdbc, hstmt);
if (colInf) if (colInf)
delete [] colInf; delete [] colInf;
@@ -2655,7 +2655,7 @@ wxDbColInf *wxDb::GetColumns(wxChar *tableName[], const wxChar *userID)
} }
} }
if (retcode != SQL_NO_DATA_FOUND) if (retcode != SQL_NO_DATA_FOUND)
{ // Error occured, abort { // Error occurred, abort
DispAllErrors(henv, hdbc, hstmt); DispAllErrors(henv, hdbc, hstmt);
if (colInf) if (colInf)
delete [] colInf; delete [] colInf;
@@ -2753,7 +2753,7 @@ wxDbColInf *wxDb::GetColumns(const wxString &tableName, UWORD *numCols, const wx
NULL, 0); // All columns NULL, 0); // All columns
} }
if (retcode != SQL_SUCCESS) if (retcode != SQL_SUCCESS)
{ // Error occured, abort { // Error occurred, abort
DispAllErrors(henv, hdbc, hstmt); DispAllErrors(henv, hdbc, hstmt);
if (colInf) if (colInf)
delete [] colInf; delete [] colInf;
@@ -2829,7 +2829,7 @@ wxDbColInf *wxDb::GetColumns(const wxString &tableName, UWORD *numCols, const wx
} }
} }
if (retcode != SQL_NO_DATA_FOUND) if (retcode != SQL_NO_DATA_FOUND)
{ // Error occured, abort { // Error occurred, abort
DispAllErrors(henv, hdbc, hstmt); DispAllErrors(henv, hdbc, hstmt);
if (colInf) if (colInf)
delete [] colInf; delete [] colInf;
@@ -3009,7 +3009,7 @@ wxDbColInf *wxDb::GetColumns(const wxString &tableName, int *numCols, const wxCh
NULL, 0); // All columns NULL, 0); // All columns
} }
if (retcode != SQL_SUCCESS) if (retcode != SQL_SUCCESS)
{ // Error occured, abort { // Error occurred, abort
DispAllErrors(henv, hdbc, hstmt); DispAllErrors(henv, hdbc, hstmt);
if (colInf) if (colInf)
delete [] colInf; delete [] colInf;
@@ -3105,7 +3105,7 @@ wxDbColInf *wxDb::GetColumns(const wxString &tableName, int *numCols, const wxCh
} }
} }
if (retcode != SQL_NO_DATA_FOUND) if (retcode != SQL_NO_DATA_FOUND)
{ // Error occured, abort { // Error occurred, abort
DispAllErrors(henv, hdbc, hstmt); DispAllErrors(henv, hdbc, hstmt);
if (colInf) if (colInf)
delete [] colInf; delete [] colInf;
@@ -3257,7 +3257,7 @@ int wxDb::GetColumnCount(const wxString &tableName, const wxChar *userID)
NULL, 0); // All columns NULL, 0); // All columns
} }
if (retcode != SQL_SUCCESS) if (retcode != SQL_SUCCESS)
{ // Error occured, abort { // Error occurred, abort
DispAllErrors(henv, hdbc, hstmt); DispAllErrors(henv, hdbc, hstmt);
SQLFreeStmt(hstmt, SQL_CLOSE); SQLFreeStmt(hstmt, SQL_CLOSE);
return(-1); return(-1);
@@ -3268,7 +3268,7 @@ int wxDb::GetColumnCount(const wxString &tableName, const wxChar *userID)
noCols++; noCols++;
if (retcode != SQL_NO_DATA_FOUND) if (retcode != SQL_NO_DATA_FOUND)
{ // Error occured, abort { // Error occurred, abort
DispAllErrors(henv, hdbc, hstmt); DispAllErrors(henv, hdbc, hstmt);
SQLFreeStmt(hstmt, SQL_CLOSE); SQLFreeStmt(hstmt, SQL_CLOSE);
return(-1); return(-1);
@@ -3289,7 +3289,7 @@ wxDbInf *wxDb::GetCatalog(const wxChar *userID)
* -- : uses SQLTables and fills pTableInf; ------ * -- : uses SQLTables and fills pTableInf; ------
* -- : pColInf is set to NULL and numCols to 0; ------ * -- : pColInf is set to NULL and numCols to 0; ------
* -- : returns pDbInf (wxDbInf) ------ * -- : returns pDbInf (wxDbInf) ------
* -- - if unsuccesfull (pDbInf == NULL) ------ * -- - if unsuccessful (pDbInf == NULL) ------
* -- : pColInf can be filled with GetColumns(..); ------ * -- : pColInf can be filled with GetColumns(..); ------
* -- : numCols can be filled with GetColumnCount(..); ------ * -- : numCols can be filled with GetColumnCount(..); ------
* --------------------------------------------------------------------- * ---------------------------------------------------------------------
@@ -4333,7 +4333,7 @@ int wxDbCreateDataSource(const wxString &driverName, const wxString &dsn, const
// embedded nulls in strings // embedded nulls in strings
setupStr.Printf(wxT("DSN=%s%cDescription=%s%cDefaultDir=%s%c"),dsn,2,description,2,defDir,2); setupStr.Printf(wxT("DSN=%s%cDescription=%s%cDefaultDir=%s%c"),dsn,2,description,2,defDir,2);
// Replace the separator from above with the '\0' seperator needed // Replace the separator from above with the '\0' separator needed
// by the SQLConfigDataSource() function // by the SQLConfigDataSource() function
int k; int k;
do do
@@ -4415,7 +4415,7 @@ bool wxDbGetDataSource(HENV henv, wxChar *Dsn, SWORD DsnMaxLength, wxChar *DsDes
******************************************************************** ********************************************************************
* *
* The following functions are all DEPRECATED and are included for * The following functions are all DEPRECATED and are included for
* backward compatability reasons only * backward compatibility reasons only
* *
******************************************************************** ********************************************************************
********************************************************************/ ********************************************************************/

View File

@@ -373,7 +373,7 @@ void wxDCBase::DoDrawSpline( wxList *points )
// Each element of the widths array will be the width of the string up to and // Each element of the widths array will be the width of the string up to and
// including the coresponding character in text. This is the generic // including the corresponding character in text. This is the generic
// implementation, the port-specific classes should do this with native APIs // implementation, the port-specific classes should do this with native APIs
// if available and if faster. Note: pango_layout_index_to_pos is much slower // if available and if faster. Note: pango_layout_index_to_pos is much slower
// than calling GetTextExtent!! // than calling GetTextExtent!!

View File

@@ -183,8 +183,8 @@ void wxPathList::AddEnvList (const wxString& envVariable)
path such as "C:\Program Files" would be split into 2 paths: path such as "C:\Program Files" would be split into 2 paths:
"C:\Program" and "Files" "C:\Program" and "Files"
*/ */
// wxT(" ;"); // Don't seperate with colon in DOS (used for drive) // wxT(" ;"); // Don't separate with colon in DOS (used for drive)
wxT(";"); // Don't seperate with colon in DOS (used for drive) wxT(";"); // Don't separate with colon in DOS (used for drive)
#else #else
wxT(" :;"); wxT(" :;");
#endif #endif

View File

@@ -387,7 +387,7 @@ bool wxFTP::SetTransferMode(TransferMode transferMode)
return false; return false;
} }
// If we get here the operation has been succesfully completed // If we get here the operation has been successfully completed
// Set the status-member // Set the status-member
m_currentTransfermode = transferMode; m_currentTransfermode = transferMode;

View File

@@ -509,7 +509,7 @@ int wxGIFDecoder::dgif(GIFImage *img, int interl, int bits)
/* loop until a valid y coordinate has been /* loop until a valid y coordinate has been
found, Or if the maximum number of passes has found, Or if the maximum number of passes has
been reached, exit the loop, and stop image been reached, exit the loop, and stop image
decoding (At this point the image is succesfully decoding (At this point the image is successfully
decoded). decoded).
If we don't loop, but merely set y to some other If we don't loop, but merely set y to some other
value, that new value might still be invalid depending value, that new value might still be invalid depending

View File

@@ -1792,7 +1792,7 @@ void wxLocale::AddCatalogLookupPathPrefix(const wxString& prefix)
(langFull.Len() == LEN_FULL && langFull[LEN_LANG] == wxT('_')) ) (langFull.Len() == LEN_FULL && langFull[LEN_LANG] == wxT('_')) )
{ {
// 0. Make sure the lang is according to latest ISO 639 // 0. Make sure the lang is according to latest ISO 639
// (this is neccessary because glibc uses iw and in instead // (this is necessary because glibc uses iw and in instead
// of he and id respectively). // of he and id respectively).
// the language itself (second part is the dialect/sublang) // the language itself (second part is the dialect/sublang)

View File

@@ -491,7 +491,7 @@ void wxPopupWindowHandler::OnLeftDown(wxMouseEvent& event)
wxPoint pos = event.GetPosition(); wxPoint pos = event.GetPosition();
// scrollbar on which the click occured // scrollbar on which the click occurred
wxWindow *sbar = NULL; wxWindow *sbar = NULL;
wxWindow *win = (wxWindow *)event.GetEventObject(); wxWindow *win = (wxWindow *)event.GetEventObject();

View File

@@ -296,7 +296,7 @@ bool wxRegExImpl::Matches(const wxChar *str, int flags) const
return true; return true;
default: default:
// an error occured // an error occurred
wxLogError(_("Failed to match '%s' in regular expression: %s"), wxLogError(_("Failed to match '%s' in regular expression: %s"),
str, GetErrorMsg(rc, !conv).c_str()); str, GetErrorMsg(rc, !conv).c_str());
// fall through // fall through

View File

@@ -75,7 +75,7 @@ wxString wxStandardPathsBase::AppendAppName(const wxString& dir)
{ {
wxString subdir(dir); wxString subdir(dir);
// empty string indicates that an error has occured, don't touch it then // empty string indicates that an error has occurred, don't touch it then
if ( !subdir.empty() ) if ( !subdir.empty() )
{ {
const wxString appname = wxTheApp->GetAppName(); const wxString appname = wxTheApp->GetAppName();

Some files were not shown because too many files have changed in this diff Show More