From 21fa9cd3c1cc5438138217a1d70879a6f772c85c Mon Sep 17 00:00:00 2001 From: Marco Hugentobler Date: Fri, 16 Dec 2011 11:58:09 +0100 Subject: [PATCH] Added title / abstract to python bindings --- python/core/qgsmaplayer.sip | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/python/core/qgsmaplayer.sip b/python/core/qgsmaplayer.sip index 22a6b9b5f7b..d0decd42b6d 100644 --- a/python/core/qgsmaplayer.sip +++ b/python/core/qgsmaplayer.sip @@ -77,6 +77,16 @@ public: */ const QString & name() const; + /**@note added in version 1.9*/ + void setTitle( const QString& title ); + /**@note added in version 1.9*/ + const QString& title() const; + + /**@note added in version 1.9*/ + void setAbstract( const QString& abstract ); + /**@note added in version 1.9*/ + const QString& abstract() const; + /**Synchronises with changes in the datasource @note added in version 1.6*/ virtual void reload();