[QGIS Commit] r12949 - trunk/qgis/python/core
svn_qgis at osgeo.org
svn_qgis at osgeo.org
Tue Feb 16 05:22:29 EST 2010
Author: wonder
Date: 2010-02-16 05:22:29 -0500 (Tue, 16 Feb 2010)
New Revision: 12949
Modified:
trunk/qgis/python/core/qgsmaplayer.sip
Log:
PyQGIS: small fixes for handling of QML styling.
Modified: trunk/qgis/python/core/qgsmaplayer.sip
===================================================================
--- trunk/qgis/python/core/qgsmaplayer.sip 2010-02-16 08:24:57 UTC (rev 12948)
+++ trunk/qgis/python/core/qgsmaplayer.sip 2010-02-16 10:22:29 UTC (rev 12949)
@@ -231,7 +231,7 @@
* @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
@@ -246,9 +246,9 @@
* @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
@@ -258,7 +258,7 @@
* @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
@@ -273,7 +273,7 @@
* @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();
More information about the QGIS-commit
mailing list