From: Vadim Zeitlin Date: Sat, 25 Feb 2012 15:03:20 +0000 (+0000) Subject: No changes, just remove functions bodies from interface docs. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/29a3f6548e10e77f684502658bb148eef7f3bd32 No changes, just remove functions bodies from interface docs. Omit the implementations, even trivial ones, from the documentation. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70682 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/config.h b/interface/wx/config.h index 414397992b..9fcd26670d 100644 --- a/interface/wx/config.h +++ b/interface/wx/config.h @@ -968,7 +968,7 @@ public: Returns the name of the key which was passed to the ctor. The "name" is just anything which follows the last slash of the string given to the ctor. */ - const wxString& Name() const { return m_strName; } + const wxString& Name() const; /** This method must be called if the original path inside the wxConfig object diff --git a/interface/wx/geometry.h b/interface/wx/geometry.h index 9a7624a258..5ad471c399 100644 --- a/interface/wx/geometry.h +++ b/interface/wx/geometry.h @@ -316,7 +316,7 @@ public: class wxTransform2D { public : - virtual ~wxTransform2D() { } + virtual ~wxTransform2D(); virtual void Transform( wxPoint2DInt* pt )const = 0; virtual void Transform( wxRect2DInt* r ) const; virtual wxPoint2DInt Transform( const wxPoint2DInt &pt ) const; diff --git a/interface/wx/layout.h b/interface/wx/layout.h index 1ea3bab324..f081bf55e1 100644 --- a/interface/wx/layout.h +++ b/interface/wx/layout.h @@ -71,12 +71,12 @@ public: // // Dimension is unconstrained // - void Unconstrained() { relationship = wxUnconstrained; } + void Unconstrained(); // // Dimension is 'as is' (use current size settings) // - void AsIs() { relationship = wxAsIs; } + void AsIs(); // // Accessors @@ -129,7 +129,7 @@ public: // note that default copy ctor and assignment operators are ok - virtual ~wxLayoutConstraints(){} + virtual ~wxLayoutConstraints(); bool SatisfyConstraints(wxWindow *win, int *noChanges); bool AreSatisfied() const; diff --git a/interface/wx/mimetype.h b/interface/wx/mimetype.h index 3c9576e0ed..d4937b1343 100644 --- a/interface/wx/mimetype.h +++ b/interface/wx/mimetype.h @@ -230,8 +230,8 @@ public: class MessageParameters { public: - /// Constructor - MessageParameters() { } + /// Trivial default constructor. + MessageParameters(); /// Constructor taking a filename and a mime type. MessageParameters(const wxString& filename, @@ -247,7 +247,7 @@ public: virtual wxString GetParamValue(const wxString& name) const; /// Trivial but virtual dtor as this class can be inherited from. - virtual ~MessageParameters() { } + virtual ~MessageParameters(); }; /** diff --git a/interface/wx/translation.h b/interface/wx/translation.h index e40fdf7c90..e0f2587940 100644 --- a/interface/wx/translation.h +++ b/interface/wx/translation.h @@ -253,8 +253,8 @@ public: class wxTranslationsLoader { public: - /// Constructor - wxTranslationsLoader() {} + /// Trivial default constructor. + wxTranslationsLoader(); /** Called to load requested catalog.