diff --git a/include/xlnt/cell/cell.hpp b/include/xlnt/cell/cell.hpp index 63972ecc..f0d7661c 100644 --- a/include/xlnt/cell/cell.hpp +++ b/include/xlnt/cell/cell.hpp @@ -190,37 +190,37 @@ public: /// bool has_hyperlink() const; - // computed formatting + // computed formatting - /// - /// Returns the result of computed_format().alignment(). - /// - alignment computed_alignment() const; + /// + /// Returns the result of computed_format().alignment(). + /// + class alignment computed_alignment() const; - /// - /// Returns the result of computed_format().border(). - /// - border computed_border() const; + /// + /// Returns the result of computed_format().border(). + /// + class border computed_border() const; - /// - /// Returns the result of computed_format().fill(). - /// - fill computed_fill() const; + /// + /// Returns the result of computed_format().fill(). + /// + class fill computed_fill() const; - /// - /// Returns the result of computed_format().font(). - /// - font computed_font() const; + /// + /// Returns the result of computed_format().font(). + /// + class font computed_font() const; - /// - /// Returns the result of computed_format().number_format(). - /// - number_format computed_number_format() const; + /// + /// Returns the result of computed_format().number_format(). + /// + class number_format computed_number_format() const; - /// - /// Returns the result of computed_format().protection(). - /// - protection computed_protection() const; + /// + /// Returns the result of computed_format().protection(). + /// + class protection computed_protection() const; // format @@ -250,7 +250,7 @@ public: /// /// Returns the number format of this cell. /// - xlnt::number_format number_format() const; + class number_format number_format() const; /// /// Creates a new format in the workbook, sets its number_format @@ -261,7 +261,7 @@ public: /// /// Returns the font applied to the text in this cell. /// - xlnt::font font() const; + class font font() const; /// /// Creates a new format in the workbook, sets its font @@ -272,7 +272,7 @@ public: /// /// Returns the fill applied to this cell. /// - xlnt::fill fill() const; + class fill fill() const; /// /// Creates a new format in the workbook, sets its fill @@ -283,7 +283,7 @@ public: /// /// Returns the border of this cell. /// - xlnt::border border() const; + class border border() const; /// /// Creates a new format in the workbook, sets its border @@ -294,7 +294,7 @@ public: /// /// Returns the alignment of the text in this cell. /// - xlnt::alignment alignment() const; + class alignment alignment() const; /// /// Creates a new format in the workbook, sets its alignment @@ -305,12 +305,12 @@ public: /// /// Returns the protection of this cell. /// - xlnt::protection protection() const; + class protection protection() const; - /// - /// Creates a new format in the workbook, sets its protection - /// to the given protection, and applies the format to this cell. - /// + /// + /// Creates a new format in the workbook, sets its protection + /// to the given protection, and applies the format to this cell. + /// void protection(const class protection &protection_); // style