Some fixes for doygen syntax errors and some configuration to make it run smoother under Windows
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -476,7 +476,7 @@ void Sheet::onSettingDocument()
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the property for cell \key to a PropertyFloat with the value \a value.
|
||||
* Set the property for cell \p key to a PropertyFloat with the value \a value.
|
||||
* If the Property exists, but of wrong type, the previous Property is destroyed and recreated as the correct type.
|
||||
*
|
||||
* @param key The address of the cell we want to create a Property for
|
||||
@@ -506,7 +506,7 @@ Property * Sheet::setFloatProperty(CellAddress key, double value)
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the property for cell \key to a PropertyQuantity with \a value and \a unit.
|
||||
* Set the property for cell \p key to a PropertyQuantity with \a value and \a unit.
|
||||
* If the Property exists, but of wrong type, the previous Property is destroyed and recreated as the correct type.
|
||||
*
|
||||
* @param key The address of the cell we want to create a Property for
|
||||
@@ -541,7 +541,7 @@ Property * Sheet::setQuantityProperty(CellAddress key, double value, const Base:
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the property for cell \key to a PropertyString with \a value.
|
||||
* Set the property for cell \p key to a PropertyString with \a value.
|
||||
* If the Property exists, but of wrong type, the previous Property is destroyed and recreated as the correct type.
|
||||
*
|
||||
* @param key The address of the cell we want to create a Property for
|
||||
@@ -916,7 +916,7 @@ void Sheet::getSpans(CellAddress address, int &rows, int &cols) const
|
||||
/**
|
||||
* Determine whether this cell is merged with another or not.
|
||||
*
|
||||
* @param adderss
|
||||
* @param address
|
||||
*
|
||||
* @returns True if cell is merged, false if not.
|
||||
*
|
||||
@@ -950,7 +950,7 @@ int Sheet::getColumnWidth(int col) const
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Set row height of row given by index in \row to \a height.
|
||||
* @brief Set row height of row given by index in \p row to \a height.
|
||||
* @param row Row index.
|
||||
* @param height New height of row.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user