Fix syntax error in interface headers
Although these headers are not supposed to be compiled, it's still better to avoid at least the obvious typos in them. Closes https://github.com/wxWidgets/wxWidgets/pull/2140
This commit is contained in:
@@ -1577,7 +1577,7 @@ typedef double wxDouble;
|
|||||||
|
|
||||||
@header{wx/defs.h}
|
@header{wx/defs.h}
|
||||||
*/
|
*/
|
||||||
template <typename T> wxDELETE(T*& ptr);
|
template <typename T> void wxDELETE(T*& ptr);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
A function which deletes and nulls the pointer.
|
A function which deletes and nulls the pointer.
|
||||||
@@ -1597,7 +1597,7 @@ template <typename T> wxDELETE(T*& ptr);
|
|||||||
|
|
||||||
@header{wx/defs.h}
|
@header{wx/defs.h}
|
||||||
*/
|
*/
|
||||||
template <typename T> wxDELETEA(T*& array);
|
template <typename T> void wxDELETEA(T*& array);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Generate deprecation warning with the given message when a function is
|
Generate deprecation warning with the given message when a function is
|
||||||
@@ -1796,7 +1796,7 @@ template <typename T> wxDELETEA(T*& array);
|
|||||||
wxASSERT( x == 4 && y == 3 );
|
wxASSERT( x == 4 && y == 3 );
|
||||||
@endcode
|
@endcode
|
||||||
*/
|
*/
|
||||||
template <typename T> wxSwap(T& first, T& second);
|
template <typename T> void wxSwap(T& first, T& second);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
This macro is the same as the standard C99 @c va_copy for the compilers
|
This macro is the same as the standard C99 @c va_copy for the compilers
|
||||||
|
@@ -493,7 +493,7 @@ public:
|
|||||||
|
|
||||||
Use wxStreamBase::IsOk() to verify if the constructor succeeded.
|
Use wxStreamBase::IsOk() to verify if the constructor succeeded.
|
||||||
*/
|
*/
|
||||||
wxFileInputStream(const wxString& filename, int flags = 0);
|
wxFSInputStream(const wxString& filename, int flags = 0);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Returns @true if the stream is initialized and ready.
|
Returns @true if the stream is initialized and ready.
|
||||||
|
@@ -99,18 +99,18 @@ public:
|
|||||||
/**
|
/**
|
||||||
Default constructor.
|
Default constructor.
|
||||||
*/
|
*/
|
||||||
wxList<T>();
|
wxList();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Constructor which initialized the list with an array of @a count elements.
|
Constructor which initialized the list with an array of @a count elements.
|
||||||
*/
|
*/
|
||||||
wxList<T>(size_t count, T* elements[]);
|
wxList(size_t count, T* elements[]);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Destroys the list, but does not delete the objects stored in the list
|
Destroys the list, but does not delete the objects stored in the list
|
||||||
unless you called DeleteContents(@true ).
|
unless you called DeleteContents(@true ).
|
||||||
*/
|
*/
|
||||||
~wxList<T>();
|
~wxList();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Appends the pointer to @a object to the list.
|
Appends the pointer to @a object to the list.
|
||||||
|
@@ -583,19 +583,19 @@ public:
|
|||||||
@a ptr is a pointer to the reference counted object to which this class points.
|
@a ptr is a pointer to the reference counted object to which this class points.
|
||||||
If @a ptr is not NULL @b T::IncRef() will be called on the object.
|
If @a ptr is not NULL @b T::IncRef() will be called on the object.
|
||||||
*/
|
*/
|
||||||
wxObjectDataPtr<T>(T* ptr = NULL);
|
wxObjectDataPtr(T* ptr = NULL);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
This copy constructor increases the count of the reference counted object to
|
This copy constructor increases the count of the reference counted object to
|
||||||
which @a tocopy points and then this class will point to, as well.
|
which @a tocopy points and then this class will point to, as well.
|
||||||
*/
|
*/
|
||||||
wxObjectDataPtr<T>(const wxObjectDataPtr<T>& tocopy);
|
wxObjectDataPtr(const wxObjectDataPtr<T>& tocopy);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Decreases the reference count of the object to which this class points.
|
Decreases the reference count of the object to which this class points.
|
||||||
*/
|
*/
|
||||||
~wxObjectDataPtr<T>();
|
~wxObjectDataPtr();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Gets a pointer to the reference counted object to which this class points.
|
Gets a pointer to the reference counted object to which this class points.
|
||||||
|
@@ -251,7 +251,7 @@ public:
|
|||||||
class wxPGChoiceEditor : public wxPGEditor
|
class wxPGChoiceEditor : public wxPGEditor
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
wxPGChoiceEditor()
|
wxPGChoiceEditor();
|
||||||
virtual ~wxPGChoiceEditor();
|
virtual ~wxPGChoiceEditor();
|
||||||
|
|
||||||
virtual wxPGWindowList CreateControls(wxPropertyGrid* propgrid,
|
virtual wxPGWindowList CreateControls(wxPropertyGrid* propgrid,
|
||||||
|
@@ -1403,7 +1403,7 @@ public:
|
|||||||
accessible even after the associated property or
|
accessible even after the associated property or
|
||||||
the property grid has been deleted.
|
the property grid has been deleted.
|
||||||
*/
|
*/
|
||||||
wxVariant GetPropertyValue() const
|
wxVariant GetPropertyValue() const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Returns value of the associated property.
|
Returns value of the associated property.
|
||||||
|
@@ -376,7 +376,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
inline unsigned int GetActualVirtualHeight() const;
|
inline unsigned int GetActualVirtualHeight() const;
|
||||||
|
|
||||||
unsigned int GetColumnCount() const'
|
unsigned int GetColumnCount() const;
|
||||||
|
|
||||||
int GetColumnMinWidth( int column ) const;
|
int GetColumnMinWidth( int column ) const;
|
||||||
|
|
||||||
@@ -524,4 +524,4 @@ public:
|
|||||||
bool DoExpand( wxPGProperty* p );
|
bool DoExpand( wxPGProperty* p );
|
||||||
|
|
||||||
void CalculateFontAndBitmapStuff( int vspacing );
|
void CalculateFontAndBitmapStuff( int vspacing );
|
||||||
}:
|
};
|
||||||
|
@@ -305,7 +305,7 @@ public:
|
|||||||
|
|
||||||
@since 2.9.4
|
@since 2.9.4
|
||||||
*/
|
*/
|
||||||
wxRibbonToolBarToolBase* GetToolByPos(size_t pos)const
|
wxRibbonToolBarToolBase* GetToolByPos(size_t pos)const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Returns the number of tools in the toolbar.
|
Returns the number of tools in the toolbar.
|
||||||
|
@@ -173,7 +173,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
Assignment operator.
|
Assignment operator.
|
||||||
*/
|
*/
|
||||||
void operator operator=(const wxRichTextHeaderFooterData& data);
|
void operator=(const wxRichTextHeaderFooterData& data);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@@ -400,6 +400,6 @@ public:
|
|||||||
/**
|
/**
|
||||||
Assignment operator.
|
Assignment operator.
|
||||||
*/
|
*/
|
||||||
wxTarEntry& operator operator=(const wxTarEntry& entry);
|
wxTarEntry& operator=(const wxTarEntry& entry);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user