Skip to content

Commit

Permalink
PyQGIS: small fixes for handling of QML styling.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@12949 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
wonder committed Feb 16, 2010
1 parent db766a9 commit 857680b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions python/core/qgsmaplayer.sip
Expand Up @@ -231,7 +231,7 @@ public:
* @return a QString with any status messages
* @see also loadNamedStyle ();
*/
virtual QString loadDefaultStyle( bool & theResultFlag );
virtual QString loadDefaultStyle( bool & theResultFlag /Out/ );

/** Retrieve a named style for this layer if one
* exists (either as a .qml file on disk or as a
Expand All @@ -246,9 +246,9 @@ public:
* @return a QString with any status messages
* @see also loadDefaultStyle ();
*/
virtual QString loadNamedStyle( const QString theURI, bool & theResultFlag );
virtual QString loadNamedStyle( const QString theURI, bool & theResultFlag /Out/ );

virtual bool loadNamedStyleFromDb( const QString db, const QString theURI, QString &qml );
virtual bool loadNamedStyleFromDb( const QString db, const QString theURI, QString &qml /Out/ );

/** Save the properties of this layer as the default style
* (either as a .qml file on disk or as a
Expand All @@ -258,7 +258,7 @@ public:
* @return a QString with any status messages
* @see also loadNamedStyle () and saveNamedStyle()
*/
virtual QString saveDefaultStyle( bool & theResultFlag );
virtual QString saveDefaultStyle( bool & theResultFlag /Out/ );

/** Save the properties of this layer as a named style
* (either as a .qml file on disk or as a
Expand All @@ -273,7 +273,7 @@ public:
* @return a QString with any status messages
* @see also saveDefaultStyle ();
*/
virtual QString saveNamedStyle( const QString theURI, bool & theResultFlag );
virtual QString saveNamedStyle( const QString theURI, bool & theResultFlag /Out/ );

/** Return pointer to layer's undo stack */
QUndoStack* undoStack();
Expand Down

0 comments on commit 857680b

Please sign in to comment.