Remove all trailing spaces
No real changes, just clean up sources by removing trailing spaces from all the non-generated files. This should hopefully avoid future commits mixing significant changes with insignificant whitespace ones.
This commit is contained in:
@@ -4486,7 +4486,7 @@ protected:
|
||||
|
||||
// Whether the paragraph is impacted by floating objects from above
|
||||
int m_impactedByFloatingObjects;
|
||||
|
||||
|
||||
// Default tabstops
|
||||
static wxArrayInt sm_defaultTabs;
|
||||
|
||||
@@ -5702,7 +5702,7 @@ protected:
|
||||
|
||||
wxRichTextCell is the cell in a table, in which the user can type. As well as
|
||||
text, it can also contain objects e.g. an image, or even another wxRichTextTable.
|
||||
|
||||
|
||||
A cell's appearance can be changed via its associated wxRichTextAttr; for example
|
||||
its size altered or its background colour set. It also has the properties of
|
||||
column- and row-span. By default these are 1, meaning that the cell only spans
|
||||
@@ -5745,46 +5745,46 @@ public:
|
||||
|
||||
/**
|
||||
Returns the number of columns spanned by the cell.
|
||||
|
||||
|
||||
By default a cell doesn't span extra columns, so this function returns 1.
|
||||
|
||||
|
||||
@since 2.9.5
|
||||
|
||||
|
||||
@see SetColSpan(), GetRowSpan()
|
||||
*/
|
||||
int GetColSpan() const;
|
||||
|
||||
/**
|
||||
Set the number of columns spanned by the cell.
|
||||
|
||||
|
||||
By default colspan is 1 i.e. a cell doesn't span extra columns. Pass a value >1
|
||||
to change this. Attempting to set a colspan <1 will assert and be ignored.
|
||||
|
||||
|
||||
@since 2.9.5
|
||||
|
||||
|
||||
@see GetColSpan(), SetRowSpan()
|
||||
*/
|
||||
void SetColSpan(long span);
|
||||
|
||||
/**
|
||||
Returns the number of rows spanned by the cell.
|
||||
|
||||
|
||||
By default a cell doesn't span extra rows, so this function returns 1.
|
||||
|
||||
|
||||
@since 2.9.5
|
||||
|
||||
|
||||
@see SetRowSpan(), GetColSpan()
|
||||
*/
|
||||
int GetRowSpan() const;
|
||||
|
||||
/**
|
||||
Set the number of rows spanned by the cell.
|
||||
|
||||
|
||||
By default colspan is 1 i.e. a cell doesn't span extra rows. Pass a value >1
|
||||
to change this. Attempting to set a rowspan <1 will assert and be ignored.
|
||||
|
||||
|
||||
@since 2.9.5
|
||||
|
||||
|
||||
@see GetRowSpan(), SetColSpan()
|
||||
*/
|
||||
void SetRowSpan(long span);
|
||||
@@ -5912,7 +5912,7 @@ public:
|
||||
|
||||
/**
|
||||
Returns the coordinates of the cell with keyboard focus, or (-1,-1) if none.
|
||||
*/
|
||||
*/
|
||||
virtual wxPosition GetFocusedCell() const;
|
||||
|
||||
// Operations
|
||||
@@ -5996,7 +5996,7 @@ public:
|
||||
wxRichTextTableBlock(const wxRichTextTableBlock& block) { Copy(block); }
|
||||
|
||||
void Init() { m_colStart = 0; m_colEnd = 0; m_rowStart = 0; m_rowEnd = 0; }
|
||||
|
||||
|
||||
void Copy(const wxRichTextTableBlock& block)
|
||||
{
|
||||
m_colStart = block.m_colStart; m_colEnd = block.m_colEnd; m_rowStart = block.m_rowStart; m_rowEnd = block.m_rowEnd;
|
||||
|
@@ -595,7 +595,7 @@ public:
|
||||
*/
|
||||
virtual void DiscardEdits();
|
||||
|
||||
|
||||
|
||||
void SetModified(bool modified);
|
||||
|
||||
/**
|
||||
@@ -1236,7 +1236,7 @@ public:
|
||||
left of the actual paragraph is leftSubIndent.
|
||||
*/
|
||||
bool BeginNumberedBullet(int bulletNumber, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_ARABIC|wxTEXT_ATTR_BULLET_STYLE_PERIOD);
|
||||
|
||||
|
||||
/**
|
||||
Ends application of a numbered bullet.
|
||||
*/
|
||||
@@ -1248,7 +1248,7 @@ public:
|
||||
to render the bulleted paragraph.
|
||||
*/
|
||||
bool BeginSymbolBullet(const wxString& symbol, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_SYMBOL);
|
||||
|
||||
|
||||
/**
|
||||
Ends applying a symbol bullet.
|
||||
*/
|
||||
@@ -1503,7 +1503,7 @@ public:
|
||||
@a style must have flags indicating which attributes are of interest.
|
||||
*/
|
||||
virtual bool HasCharacterAttributes(const wxRichTextRange& range, const wxRichTextAttr& style) const;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
Test if this whole range has paragraph attributes of the specified kind.
|
||||
@@ -1512,7 +1512,7 @@ public:
|
||||
@a style must have flags indicating which attributes are of interest.
|
||||
*/
|
||||
virtual bool HasParagraphAttributes(const wxRichTextRange& range, const wxRichTextAttr& style) const;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
Returns @true if all of the selection, or the content at the caret position, is bold.
|
||||
@@ -2400,7 +2400,7 @@ public:
|
||||
Copy constructor.
|
||||
*/
|
||||
wxRichTextEvent(const wxRichTextEvent& event);
|
||||
|
||||
|
||||
/**
|
||||
Returns the buffer position at which the event occurred.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user