]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed missing semicolons, as reported by check_syntax.sh
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Thu, 30 Oct 2008 11:11:00 +0000 (11:11 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Thu, 30 Oct 2008 11:11:00 +0000 (11:11 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56595 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/grid.h
interface/wx/list.h
interface/wx/ptr_shrd.h
interface/wx/rawbmp.h
interface/wx/stream.h
interface/wx/string.h
interface/wx/vidmode.h

index ba410c4ace21cea0ac12a47ce7f5eb3aae3cd658..2d400ab0f24b3db73d9eb2f3afc4b94545bd98d9 100644 (file)
@@ -388,7 +388,7 @@ public:
         neither associated with this table by SetAttrProvider() nor created on
         demand by any other methods.
      */
-    wxGridCellAttrProvider *GetAttrProvider() const { return m_attrProvider; }
+    wxGridCellAttrProvider *GetAttrProvider() const;
 
     /**
         Return the attribute for the given cell.
index bd35298d39153a435a2da38fabbf0e2eb37ad08a..44311a3d37a66f922e2fe1a31c10ec7d1ce5324e 100644 (file)
@@ -236,7 +236,7 @@ public:
     /**
        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.
index c7f29474b2175b3a47e6d028ce61275f7c062a8f..718e452a52783d25453c1981dad4e637eedcccfa 100644 (file)
@@ -79,7 +79,7 @@ public:
         Releases any previously held pointer and creates a reference to the
         same object as @a topcopy.
     */
-    wxSharedPtr<T>& operator=(const wxSharedPtr<T>& tocopy)
+    wxSharedPtr<T>& operator=(const wxSharedPtr<T>& tocopy);
 
     /**
         Reset pointer to @a ptr.
index 8fd55984ded77d8b1cb6921038cb51b4a990de4b..a802ac29a61d84b75da7c7a68a2c1c6594bcfa5c 100644 (file)
@@ -94,7 +94,7 @@ public:
         Create pixel data object representing the area of the image defined by
         @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.
index f301b70314db01a223497b14675054166258587e..b2a8c9cb9028adeefc68750db07d746e3d7aa651 100644 (file)
@@ -748,7 +748,7 @@ public:
     /**
         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.
index 255058dac2bfe9c6aeda5b3cbcf786a0ae313aa4..43a8f3651f7ec0d59e9ed5d3b7fe9ad7388210f4 100644 (file)
@@ -493,7 +493,7 @@ public:
     /**
        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.
@@ -503,7 +503,7 @@ public:
     /**
        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.
@@ -1198,22 +1198,23 @@ public:
     */
     friend istream operator>>(istream& is, wxString& str);
 
+    //@{
     /**
         These functions work as C++ stream insertion operators. They insert the
         given value into the string. Precision and format cannot be set using them.
         Use Printf() instead.
     */
     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<<(wxUniCharRef ch)
-    wxString& operator<<(char ch)
-    wxString& operator<<(unsigned char ch)
-    wxString& operator<<(wchar_t ch)
-    wxString& operator<<(const wxCharBuffer& s)
-    wxString& operator<<(const wxWCharBuffer& s)
+    wxString& operator<<(const wchar_t* pwz);
+    wxString& operator<<(const wxCStrData& psz);
+    wxString& operator<<(const char* psz);
+    wxString& operator<<(wxUniCharRef ch);
+    wxString& operator<<(char ch);
+    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<<(unsigned int ui);
     wxString& operator<<(long l);
@@ -1222,6 +1223,7 @@ public:
     wxString& operator<<(wxULongLong_t ul);
     wxString& operator<<(float f);
     wxString& operator<<(double d);
+    //@}
 
     /**
         Same as Mid() (substring extraction).
index cd381dddd6d4407c39f63b1bfaa4f2ebc6be92fb..ec2e197527e341895b59e27ed9ece805b38bac5b 100644 (file)
@@ -27,9 +27,6 @@ public:
     */
     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
         non zero fields of the other mode have the same value in this one
@@ -58,6 +55,12 @@ public:
     */
     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.
     */