No changes, just fix some typos in comments.
Closes #14494. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72163 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -438,7 +438,7 @@ public:
|
|||||||
|
|
||||||
friend class wxMemoryBuffer;
|
friend class wxMemoryBuffer;
|
||||||
|
|
||||||
// everyting is private as it can only be used by wxMemoryBuffer
|
// everything is private as it can only be used by wxMemoryBuffer
|
||||||
private:
|
private:
|
||||||
wxMemoryBufferData(size_t size = wxMemoryBufferData::DefBufSize)
|
wxMemoryBufferData(size_t size = wxMemoryBufferData::DefBufSize)
|
||||||
: m_data(size ? malloc(size) : NULL), m_size(size), m_len(0), m_ref(0)
|
: m_data(size ? malloc(size) : NULL), m_size(size), m_len(0), m_ref(0)
|
||||||
|
@@ -73,7 +73,7 @@ enum
|
|||||||
// abstract base class wxConfigBase which defines the interface for derived
|
// abstract base class wxConfigBase which defines the interface for derived
|
||||||
// classes
|
// classes
|
||||||
//
|
//
|
||||||
// wxConfig organizes the items in a tree-like structure (modeled after the
|
// wxConfig organizes the items in a tree-like structure (modelled after the
|
||||||
// Unix/Dos filesystem). There are groups (directories) and keys (files).
|
// Unix/Dos filesystem). There are groups (directories) and keys (files).
|
||||||
// There is always one current group given by the current path.
|
// There is always one current group given by the current path.
|
||||||
//
|
//
|
||||||
|
@@ -229,7 +229,7 @@ public:
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// define hierachy
|
// define hierarchy
|
||||||
virtual wxDataViewItem GetParent( const wxDataViewItem &item ) const = 0;
|
virtual wxDataViewItem GetParent( const wxDataViewItem &item ) const = 0;
|
||||||
virtual bool IsContainer( const wxDataViewItem &item ) const = 0;
|
virtual bool IsContainer( const wxDataViewItem &item ) const = 0;
|
||||||
// Is the container just a header or an item with all columns
|
// Is the container just a header or an item with all columns
|
||||||
|
@@ -408,7 +408,7 @@ public:
|
|||||||
// helper classes
|
// helper classes
|
||||||
// ------------------------------------------------------------------------
|
// ------------------------------------------------------------------------
|
||||||
|
|
||||||
// a class representing a time zone: basicly, this is just an offset
|
// a class representing a time zone: basically, this is just an offset
|
||||||
// (in seconds) from GMT
|
// (in seconds) from GMT
|
||||||
class WXDLLIMPEXP_BASE TimeZone
|
class WXDLLIMPEXP_BASE TimeZone
|
||||||
{
|
{
|
||||||
@@ -693,7 +693,7 @@ public:
|
|||||||
// default assignment operator is ok
|
// default assignment operator is ok
|
||||||
|
|
||||||
// calendar calculations (functions which set the date only leave the time
|
// calendar calculations (functions which set the date only leave the time
|
||||||
// unchanged, e.g. don't explictly zero it): SetXXX() functions modify the
|
// unchanged, e.g. don't explicitly zero it): SetXXX() functions modify the
|
||||||
// object itself, GetXXX() ones return a new object.
|
// object itself, GetXXX() ones return a new object.
|
||||||
// ------------------------------------------------------------------------
|
// ------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@@ -601,7 +601,7 @@ public:
|
|||||||
virtual void DeleteWindows();
|
virtual void DeleteWindows();
|
||||||
|
|
||||||
// Inform sizer about the first direction that has been decided (by parent item)
|
// Inform sizer about the first direction that has been decided (by parent item)
|
||||||
// Returns true if it made use of the informtion (and recalculated min size)
|
// Returns true if it made use of the information (and recalculated min size)
|
||||||
virtual bool InformFirstDirection( int WXUNUSED(direction), int WXUNUSED(size), int WXUNUSED(availableOtherDir) )
|
virtual bool InformFirstDirection( int WXUNUSED(direction), int WXUNUSED(size), int WXUNUSED(availableOtherDir) )
|
||||||
{ return false; }
|
{ return false; }
|
||||||
|
|
||||||
|
@@ -821,7 +821,7 @@ public:
|
|||||||
m_start(event.m_start),
|
m_start(event.m_start),
|
||||||
m_end(event.m_end) { }
|
m_end(event.m_end) { }
|
||||||
|
|
||||||
// get the mouse event which happend over the URL
|
// get the mouse event which happened over the URL
|
||||||
const wxMouseEvent& GetMouseEvent() const { return m_evtMouse; }
|
const wxMouseEvent& GetMouseEvent() const { return m_evtMouse; }
|
||||||
|
|
||||||
// get the start of the URL
|
// get the start of the URL
|
||||||
|
Reference in New Issue
Block a user