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:
parent
05fbf0e75e
commit
29a3f6548e
@ -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
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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();
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -253,8 +253,8 @@ public:
|
||||
class wxTranslationsLoader
|
||||
{
|
||||
public:
|
||||
/// Constructor
|
||||
wxTranslationsLoader() {}
|
||||
/// Trivial default constructor.
|
||||
wxTranslationsLoader();
|
||||
|
||||
/**
|
||||
Called to load requested catalog.
|
||||
|
Loading…
Reference in New Issue
Block a user