fixed missing semicolons, as reported by check_syntax.sh
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56595 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -388,7 +388,7 @@ public:
|
|||||||
neither associated with this table by SetAttrProvider() nor created on
|
neither associated with this table by SetAttrProvider() nor created on
|
||||||
demand by any other methods.
|
demand by any other methods.
|
||||||
*/
|
*/
|
||||||
wxGridCellAttrProvider *GetAttrProvider() const { return m_attrProvider; }
|
wxGridCellAttrProvider *GetAttrProvider() const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Return the attribute for the given cell.
|
Return the attribute for the given cell.
|
||||||
|
@@ -236,7 +236,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
Clears the list and adds @a n items with value @a v to it.
|
Clears the list and adds @a n items with value @a v to it.
|
||||||
*/
|
*/
|
||||||
void assign(size_type n, const_reference v = value_type()) \
|
void assign(size_type n, const_reference v = value_type());
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Returns the last item of the list.
|
Returns the last item of the list.
|
||||||
|
@@ -79,7 +79,7 @@ public:
|
|||||||
Releases any previously held pointer and creates a reference to the
|
Releases any previously held pointer and creates a reference to the
|
||||||
same object as @a topcopy.
|
same object as @a topcopy.
|
||||||
*/
|
*/
|
||||||
wxSharedPtr<T>& operator=(const wxSharedPtr<T>& tocopy)
|
wxSharedPtr<T>& operator=(const wxSharedPtr<T>& tocopy);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Reset pointer to @a ptr.
|
Reset pointer to @a ptr.
|
||||||
|
@@ -94,7 +94,7 @@ public:
|
|||||||
Create pixel data object representing the area of the image defined by
|
Create pixel data object representing the area of the image defined by
|
||||||
@a pt and @a sz.
|
@a pt and @a sz.
|
||||||
*/
|
*/
|
||||||
wxPixelData(Image& i, const wxPoint& pt, const wxSize& sz)
|
wxPixelData(Image& i, const wxPoint& pt, const wxSize& sz);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Return @true of if we could get access to bitmap data successfully.
|
Return @true of if we could get access to bitmap data successfully.
|
||||||
|
@@ -748,7 +748,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
Calls Sync() and changes the stream position.
|
Calls Sync() and changes the stream position.
|
||||||
*/
|
*/
|
||||||
virtual wxFileOffset SeekO(wxFileOffset pos, wxSeekMode mode = wxFromStart)
|
virtual wxFileOffset SeekO(wxFileOffset pos, wxSeekMode mode = wxFromStart);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Flushes the buffer and calls Sync() on the parent stream.
|
Flushes the buffer and calls Sync() on the parent stream.
|
||||||
|
@@ -493,7 +493,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
Appends the wide string literal @e pwz.
|
Appends the wide string literal @e pwz.
|
||||||
*/
|
*/
|
||||||
wxString& Append(const wchar_t* pwz)
|
wxString& Append(const wchar_t* pwz);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Appends the string literal @e psz with max length @e nLen.
|
Appends the string literal @e psz with max length @e nLen.
|
||||||
@@ -503,7 +503,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
Appends the wide string literal @e psz with max length @e nLen.
|
Appends the wide string literal @e psz with max length @e nLen.
|
||||||
*/
|
*/
|
||||||
wxString& Append(const wchar_t* pwz, size_t nLen)
|
wxString& Append(const wchar_t* pwz, size_t nLen);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Appends the string @e s.
|
Appends the string @e s.
|
||||||
@@ -1198,22 +1198,23 @@ public:
|
|||||||
*/
|
*/
|
||||||
friend istream operator>>(istream& is, wxString& str);
|
friend istream operator>>(istream& is, wxString& str);
|
||||||
|
|
||||||
|
//@{
|
||||||
/**
|
/**
|
||||||
These functions work as C++ stream insertion operators. They insert the
|
These functions work as C++ stream insertion operators. They insert the
|
||||||
given value into the string. Precision and format cannot be set using them.
|
given value into the string. Precision and format cannot be set using them.
|
||||||
Use Printf() instead.
|
Use Printf() instead.
|
||||||
*/
|
*/
|
||||||
wxString& operator<<(const wxString& s);
|
wxString& operator<<(const wxString& s);
|
||||||
wxString& operator<<(const char* psz)
|
|
||||||
wxString& operator<<(const wchar_t* pwz)
|
|
||||||
wxString& operator<<(const wxCStrData& psz)
|
|
||||||
wxString& operator<<(const char* psz);
|
wxString& operator<<(const char* psz);
|
||||||
wxString& operator<<(wxUniCharRef ch)
|
wxString& operator<<(const wchar_t* pwz);
|
||||||
wxString& operator<<(char ch)
|
wxString& operator<<(const wxCStrData& psz);
|
||||||
wxString& operator<<(unsigned char ch)
|
wxString& operator<<(const char* psz);
|
||||||
wxString& operator<<(wchar_t ch)
|
wxString& operator<<(wxUniCharRef ch);
|
||||||
wxString& operator<<(const wxCharBuffer& s)
|
wxString& operator<<(char ch);
|
||||||
wxString& operator<<(const wxWCharBuffer& s)
|
wxString& operator<<(unsigned char ch);
|
||||||
|
wxString& operator<<(wchar_t ch);
|
||||||
|
wxString& operator<<(const wxCharBuffer& s);
|
||||||
|
wxString& operator<<(const wxWCharBuffer& s);
|
||||||
wxString& operator<<(wxUniCharRef ch);
|
wxString& operator<<(wxUniCharRef ch);
|
||||||
wxString& operator<<(unsigned int ui);
|
wxString& operator<<(unsigned int ui);
|
||||||
wxString& operator<<(long l);
|
wxString& operator<<(long l);
|
||||||
@@ -1222,6 +1223,7 @@ public:
|
|||||||
wxString& operator<<(wxULongLong_t ul);
|
wxString& operator<<(wxULongLong_t ul);
|
||||||
wxString& operator<<(float f);
|
wxString& operator<<(float f);
|
||||||
wxString& operator<<(double d);
|
wxString& operator<<(double d);
|
||||||
|
//@}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Same as Mid() (substring extraction).
|
Same as Mid() (substring extraction).
|
||||||
|
@@ -27,9 +27,6 @@ public:
|
|||||||
*/
|
*/
|
||||||
wxVideoMode(int width = 0, int height = 0, int depth = 0, int freq = 0);
|
wxVideoMode(int width = 0, int height = 0, int depth = 0, int freq = 0);
|
||||||
|
|
||||||
bool operator==(const wxVideoMode& m) const
|
|
||||||
bool operator!=(const wxVideoMode& mode) const
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Returns true if this mode matches the other one in the sense that all
|
Returns true if this mode matches the other one in the sense that all
|
||||||
non zero fields of the other mode have the same value in this one
|
non zero fields of the other mode have the same value in this one
|
||||||
@@ -58,6 +55,12 @@ public:
|
|||||||
*/
|
*/
|
||||||
bool IsOk() const;
|
bool IsOk() const;
|
||||||
|
|
||||||
|
|
||||||
|
bool operator==(const wxVideoMode& m) const;
|
||||||
|
bool operator!=(const wxVideoMode& mode) const;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
The screen width in pixels (e.g. 640), 0 means unspecified.
|
The screen width in pixels (e.g. 640), 0 means unspecified.
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user