@@ -662,11 +662,11 @@ class QgsVectorLayer : QgsMapLayer
662
662
* @param description
663
663
* @param useAsDefault
664
664
* @param uiFileContent
665
- * @param msgError
665
+ * @param msgError (out)
666
666
*/
667
667
virtual void saveStyleToDatabase( const QString& name, const QString& description,
668
668
bool useAsDefault, const QString& uiFileContent,
669
- QString &msgError );
669
+ QString &msgError /Out/ );
670
670
671
671
/**
672
672
* Lists all the style in db split into related to the layer and not related to
@@ -682,21 +682,21 @@ class QgsVectorLayer : QgsMapLayer
682
682
/**
683
683
* Will return the named style corresponding to style id provided
684
684
*/
685
- virtual QString getStyleFromDatabase( const QString& styleId, QString &msgError );
685
+ virtual QString getStyleFromDatabase( const QString& styleId, QString &msgError /Out/ );
686
686
687
687
/**
688
688
* Load a named style from file/local db/datasource db
689
689
* @param theURI the URI of the style or the URI of the layer
690
690
* @param theResultFlag will be set to true if a named style is correctly loaded
691
691
* @param loadFromLocalDb if true forces to load from local db instead of datasource one
692
692
*/
693
- virtual QString loadNamedStyle( const QString &theURI, bool &theResultFlag, bool loadFromLocalDb );
693
+ virtual QString loadNamedStyle( const QString &theURI, bool &theResultFlag /Out/ , bool loadFromLocalDb );
694
694
695
695
/**
696
696
* Calls loadNamedStyle( theURI, theResultFlag, false );
697
697
* Retained for backward compatibility
698
698
*/
699
- virtual QString loadNamedStyle( const QString &theURI, bool &theResultFlag );
699
+ virtual QString loadNamedStyle( const QString &theURI, bool &theResultFlag /Out/ );
700
700
701
701
/** Read the symbology for the current layer from the Dom node supplied.
702
702
* @param node node that will contain the symbology definition for this layer.
0 commit comments