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
This commit is contained in:
Vadim Zeitlin
2012-02-25 15:03:20 +00:00
parent 05fbf0e75e
commit 29a3f6548e
5 changed files with 10 additions and 10 deletions

View File

@@ -968,7 +968,7 @@ public:
Returns the name of the key which was passed to the ctor. 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. 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 This method must be called if the original path inside the wxConfig object

View File

@@ -316,7 +316,7 @@ public:
class wxTransform2D class wxTransform2D
{ {
public : public :
virtual ~wxTransform2D() { } virtual ~wxTransform2D();
virtual void Transform( wxPoint2DInt* pt )const = 0; virtual void Transform( wxPoint2DInt* pt )const = 0;
virtual void Transform( wxRect2DInt* r ) const; virtual void Transform( wxRect2DInt* r ) const;
virtual wxPoint2DInt Transform( const wxPoint2DInt &pt ) const; virtual wxPoint2DInt Transform( const wxPoint2DInt &pt ) const;

View File

@@ -71,12 +71,12 @@ public:
// //
// Dimension is unconstrained // Dimension is unconstrained
// //
void Unconstrained() { relationship = wxUnconstrained; } void Unconstrained();
// //
// Dimension is 'as is' (use current size settings) // Dimension is 'as is' (use current size settings)
// //
void AsIs() { relationship = wxAsIs; } void AsIs();
// //
// Accessors // Accessors
@@ -129,7 +129,7 @@ public:
// note that default copy ctor and assignment operators are ok // note that default copy ctor and assignment operators are ok
virtual ~wxLayoutConstraints(){} virtual ~wxLayoutConstraints();
bool SatisfyConstraints(wxWindow *win, int *noChanges); bool SatisfyConstraints(wxWindow *win, int *noChanges);
bool AreSatisfied() const; bool AreSatisfied() const;

View File

@@ -230,8 +230,8 @@ public:
class MessageParameters class MessageParameters
{ {
public: public:
/// Constructor /// Trivial default constructor.
MessageParameters() { } MessageParameters();
/// Constructor taking a filename and a mime type. /// Constructor taking a filename and a mime type.
MessageParameters(const wxString& filename, MessageParameters(const wxString& filename,
@@ -247,7 +247,7 @@ public:
virtual wxString GetParamValue(const wxString& name) const; virtual wxString GetParamValue(const wxString& name) const;
/// Trivial but virtual dtor as this class can be inherited from. /// Trivial but virtual dtor as this class can be inherited from.
virtual ~MessageParameters() { } virtual ~MessageParameters();
}; };
/** /**

View File

@@ -253,8 +253,8 @@ public:
class wxTranslationsLoader class wxTranslationsLoader
{ {
public: public:
/// Constructor /// Trivial default constructor.
wxTranslationsLoader() {} wxTranslationsLoader();
/** /**
Called to load requested catalog. Called to load requested catalog.