Skip to content

Commit

Permalink
Remove SIP_TRANSFERTHIS from .cpp files
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Apr 2, 2017
1 parent 5da0318 commit 1521033
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/core/annotations/qgsannotationmanager.cpp
Expand Up @@ -18,7 +18,7 @@
#include "qgsannotation.h"
#include "qgsannotationregistry.h"

QgsAnnotationManager::QgsAnnotationManager( QgsProject *project SIP_TRANSFERTHIS )
QgsAnnotationManager::QgsAnnotationManager( QgsProject *project )
: QObject( project )
, mProject( project )
{
Expand Down
2 changes: 1 addition & 1 deletion src/core/annotations/qgshtmlannotation.cpp
Expand Up @@ -36,7 +36,7 @@
#include <QWidget>


QgsHtmlAnnotation::QgsHtmlAnnotation( QObject *parent SIP_TRANSFERTHIS )
QgsHtmlAnnotation::QgsHtmlAnnotation( QObject *parent )
: QgsAnnotation( parent )
{
mWebPage = new QgsWebPage();
Expand Down
2 changes: 1 addition & 1 deletion src/core/annotations/qgssvgannotation.cpp
Expand Up @@ -21,7 +21,7 @@
#include <QDomElement>


QgsSvgAnnotation::QgsSvgAnnotation( QObject *parent SIP_TRANSFERTHIS )
QgsSvgAnnotation::QgsSvgAnnotation( QObject *parent )
: QgsAnnotation( parent )
{

Expand Down
2 changes: 1 addition & 1 deletion src/core/annotations/qgstextannotation.cpp
Expand Up @@ -19,7 +19,7 @@
#include <QDomDocument>
#include <QPainter>

QgsTextAnnotation::QgsTextAnnotation( QObject *parent SIP_TRANSFERTHIS )
QgsTextAnnotation::QgsTextAnnotation( QObject *parent )
: QgsAnnotation( parent )
, mDocument( new QTextDocument( QString() ) )
{
Expand Down
2 changes: 1 addition & 1 deletion src/core/processing/qgsprocessingregistry.cpp
Expand Up @@ -17,7 +17,7 @@

#include "qgsprocessingregistry.h"

QgsProcessingRegistry::QgsProcessingRegistry( QObject *parent SIP_TRANSFERTHIS )
QgsProcessingRegistry::QgsProcessingRegistry( QObject *parent )
: QObject( parent )
{

Expand Down

0 comments on commit 1521033

Please sign in to comment.