mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
fix gcc error caused by methods with the same names as classes
This commit is contained in:
parent
75e0d9475b
commit
d6c7162b17
|
@ -217,7 +217,7 @@ public:
|
||||||
/// Return a reference to the format applied to this cell.
|
/// Return a reference to the format applied to this cell.
|
||||||
/// If this cell has no format, an invalid_attribute exception will be thrown.
|
/// If this cell has no format, an invalid_attribute exception will be thrown.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
const format format() const;
|
const class format format() const;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Applies the cell-level formatting of new_format to this cell.
|
/// Applies the cell-level formatting of new_format to this cell.
|
||||||
|
@ -307,7 +307,7 @@ public:
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns a wrapper pointing to the named style applied to this cell.
|
/// Returns a wrapper pointing to the named style applied to this cell.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
const style style() const;
|
const class style style() const;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Equivalent to style(new_style.name())
|
/// Equivalent to style(new_style.name())
|
||||||
|
|
Loading…
Reference in New Issue
Block a user