From c902af7e17923ff7eeab90531f6a96b09bd4452a Mon Sep 17 00:00:00 2001 From: Thomas Fussell Date: Tue, 11 Apr 2017 17:27:41 -0400 Subject: [PATCH] fix doxygen warnings --- docs/source/includes/_api_reference.md | 4 ++-- include/xlnt/styles/color.hpp | 24 +++++++++++----------- include/xlnt/worksheet/range_reference.hpp | 4 ++-- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/source/includes/_api_reference.md b/docs/source/includes/_api_reference.md index 6ce287ca..64446521 100644 --- a/docs/source/includes/_api_reference.md +++ b/docs/source/includes/_api_reference.md @@ -2102,9 +2102,9 @@ Converts relative reference coordinates to absolute coordinates (B12 -> $B$12) #### ```xlnt::range_reference::range_reference()``` Constructs a range reference equal to A1:A1 #### ```xlnt::range_reference::range_reference(const std::string &range_string)``` -Constructs a range reference equivalent to the provided range_string in the form :. +Constructs a range reference equivalent to the provided range_string in the form top_left:bottom_right. #### ```xlnt::range_reference::range_reference(const char *range_string)``` -Constructs a range reference equivalent to the provided range_string in the form :. +Constructs a range reference equivalent to the provided range_string in the form top_left:bottom_right. #### ```xlnt::range_reference::range_reference(const std::pair< cell_reference, cell_reference > &reference_pair)``` Constructs a range reference from a pair of cell references. #### ```xlnt::range_reference::range_reference(const cell_reference &start, const cell_reference &end)``` diff --git a/include/xlnt/styles/color.hpp b/include/xlnt/styles/color.hpp index 39629f2a..2905b2e1 100644 --- a/include/xlnt/styles/color.hpp +++ b/include/xlnt/styles/color.hpp @@ -95,7 +95,7 @@ class XLNT_API rgb_color { public: /// - /// Constructs an RGB color from a string in the form #[aa]rrggbb + /// Constructs an RGB color from a string in the form \#[aa]rrggbb /// rgb_color(const std::string &hex_string); @@ -106,7 +106,7 @@ public: rgb_color(std::uint8_t r, std::uint8_t g, std::uint8_t b, std::uint8_t a = 255); /// - /// Returns a string representation of this color in the form #aarrggbb + /// Returns a string representation of this color in the form \#aarrggbb /// std::string hex_string() const; @@ -164,52 +164,52 @@ class XLNT_API color { public: /// - /// Returns the color #000000 + /// Returns the color \#000000 /// static const color black(); /// - /// Returns the color #ffffff + /// Returns the color \#ffffff /// static const color white(); /// - /// Returns the color #ff0000 + /// Returns the color \#ff0000 /// static const color red(); /// - /// Returns the color #8b0000 + /// Returns the color \#8b0000 /// static const color darkred(); /// - /// Returns the color #00ff00 + /// Returns the color \#00ff00 /// static const color blue(); /// - /// Returns the color #008b00 + /// Returns the color \#008b00 /// static const color darkblue(); /// - /// Returns the color #0000ff + /// Returns the color \#0000ff /// static const color green(); /// - /// Returns the color #00008b + /// Returns the color \#00008b /// static const color darkgreen(); /// - /// Returns the color #ffff00 + /// Returns the color \#ffff00 /// static const color yellow(); /// - /// Returns the color #cccc00 + /// Returns the color \#cccc00 /// static const color darkyellow(); diff --git a/include/xlnt/worksheet/range_reference.hpp b/include/xlnt/worksheet/range_reference.hpp index 8f911ba3..44f6b76d 100644 --- a/include/xlnt/worksheet/range_reference.hpp +++ b/include/xlnt/worksheet/range_reference.hpp @@ -47,13 +47,13 @@ public: /// /// Constructs a range reference equivalent to the provided range_string in the form - /// :. + /// top_left:bottom_right. /// explicit range_reference(const std::string &range_string); /// /// Constructs a range reference equivalent to the provided range_string in the form - /// :. + /// top_left:bottom_right. /// explicit range_reference(const char *range_string);