Some fixes for doygen syntax errors and some configuration to make it run smoother under Windows

This commit is contained in:
hgutsche
2017-02-27 10:29:05 -05:00
committed by wmayer
parent e3ea61d165
commit 201c9d89b0
30 changed files with 103 additions and 97 deletions

View File

@@ -72,10 +72,8 @@ const int Cell::ALIGNMENT_VERTICAL = 0xf0;
/**
* Construct a CellContent object.
*
* @param _row The row of the cell in the spreadsheet that contains is.
* @param _col The column of the cell in the spreadsheet that contains is.
* @param _owner The spreadsheet that owns this cell.
* @param _address The adress of the caell
* @param _owner The spreadsheet that owns this cell.
*
*/
@@ -758,7 +756,7 @@ std::string Cell::encodeAlignment(int alignment)
}
/**
* Encode \a color as a #rrggbbaa string.
* Encode \a color as a \#rrggbbaa string.
*
* @param color Color to encode.
*
@@ -805,7 +803,7 @@ std::string Cell::encodeStyle(const std::set<std::string> & style)
}
/**
* Decode a string of the format #rrggbb or #rrggbbaa into a Color.
* Decode a string of the format \#rrggbb or \#rrggbbaa into a Color.
*
* @param color The color to decode.
* @param defaultColor A default color in case the decoding fails.