]> git.saurik.com Git - wxWidgets.git/commitdiff
No changes, just remove functions bodies from interface docs.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 25 Feb 2012 15:03:20 +0000 (15:03 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 25 Feb 2012 15:03:20 +0000 (15:03 +0000)
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

interface/wx/config.h
interface/wx/geometry.h
interface/wx/layout.h
interface/wx/mimetype.h
interface/wx/translation.h

index 414397992b4038da53ce595219286f1fbedd79d8..9fcd26670deb5de8e713c177ba4f14a226b90c34 100644 (file)
@@ -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 
index 9a7624a2587ed159727ed5b180a78cca3d9a5098..5ad471c39926a0903608d8b79430b47fa09ac918 100644 (file)
@@ -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;
index 1ea3bab324d16a15d9dc4776e585cfd2a7c5a412..f081bf55e1a0c7050a7b51fdb4bdff2abc9bd232 100644 (file)
@@ -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;
index 3c9576e0ed819aa9dd405b9d4f2a645df94d78b7..d4937b13430b2f898d3c933d06ef7cd782c89a20 100644 (file)
@@ -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();
     };
 
     /**
index e40fdf7c9046f4c904d3d99016a66ec51a207ced..e0f258794004eecabb0bf888d955ed9c8652262d 100644 (file)
@@ -253,8 +253,8 @@ public:
 class wxTranslationsLoader
 {
 public:
-    /// Constructor
-    wxTranslationsLoader() {}
+    /// Trivial default constructor.
+    wxTranslationsLoader();
 
     /**
         Called to load requested catalog.