Skip to content

Commit 97805b6

Browse files
committedSep 22, 2014
Fix doxygen and build warnings
1 parent f58fbe0 commit 97805b6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎src/core/composer/qgscomposerattributetablev2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ class CORE_EXPORT QgsComposerAttributeTableV2: public QgsComposerTableV2
194194
QList<QPair<int, bool> > sortAttributes() const;
195195

196196
/**Queries the attribute table's vector layer for attributes to show in the table.
197-
* @param content table content
197+
* @param contents table content
198198
* @returns true if attributes were successfully fetched
199199
* @note not available in python bindings
200200
*/

‎src/gui/attributetable/qgsattributetabledelegate.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ void QgsAttributeTableDelegate::setModelData( QWidget *editor, QAbstractItemMode
9797

9898
newValue = eww->value();
9999

100-
if ( oldValue != newValue && newValue.isValid() || oldValue.isNull() != newValue.isNull() )
100+
if (( oldValue != newValue && newValue.isValid() ) || oldValue.isNull() != newValue.isNull() )
101101
{
102102
vl->beginEditCommand( tr( "Attribute changed" ) );
103103
vl->changeAttributeValue( fid, fieldIdx, newValue, oldValue );

‎src/gui/qgscolorwidgets.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -558,8 +558,8 @@ class GUI_EXPORT QgsColorTextWidget : public QgsColorWidget
558558
*/
559559
enum ColorTextFormat
560560
{
561-
HexRgb = 0, /*!< #RRGGBB in hexadecimal */
562-
HexRgbA, /*!< #RRGGBBAA in hexadecimal, with alpha */
561+
HexRgb = 0, /*!< \#RRGGBB in hexadecimal */
562+
HexRgbA, /*!< \#RRGGBBAA in hexadecimal, with alpha */
563563
Rgb, /*!< rgb( r, g, b ) format */
564564
Rgba /*!< rgba( r, g, b, a ) format, with alpha */
565565
};

0 commit comments

Comments
 (0)
Please sign in to comment.