mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-13 00:03:09 -04:00
correctly use reference for context in QgsReadWriteContextCategoryPopper
This commit is contained in:
parent
3c78fb58aa
commit
a483ef817a
@ -116,7 +116,7 @@ This would happen when it gets out of scope.
|
||||
#include "qgsreadwritecontext.h"
|
||||
%End
|
||||
public:
|
||||
QgsReadWriteContextCategoryPopper( QgsReadWriteContext *context );
|
||||
QgsReadWriteContextCategoryPopper( QgsReadWriteContext &context );
|
||||
%Docstring
|
||||
Creates a popper
|
||||
%End
|
||||
|
@ -41,7 +41,7 @@ QgsReadWriteContextCategoryPopper QgsReadWriteContext::enterCategory( const QStr
|
||||
if ( !details.isEmpty() )
|
||||
message.append( QString( " :: %1" ).arg( details ) );
|
||||
mCategories.push_back( message );
|
||||
return QgsReadWriteContextCategoryPopper( this );
|
||||
return QgsReadWriteContextCategoryPopper( *this );
|
||||
}
|
||||
|
||||
void QgsReadWriteContext::leaveCategory()
|
||||
|
@ -124,14 +124,10 @@ class CORE_EXPORT QgsReadWriteContextCategoryPopper
|
||||
{
|
||||
public:
|
||||
//! Creates a popper
|
||||
QgsReadWriteContextCategoryPopper( QgsReadWriteContext *context ) : mContext( context ) {}
|
||||
~QgsReadWriteContextCategoryPopper()
|
||||
{
|
||||
if ( mContext )
|
||||
mContext->leaveCategory();
|
||||
}
|
||||
QgsReadWriteContextCategoryPopper( QgsReadWriteContext &context ) : mContext( context ) {}
|
||||
~QgsReadWriteContextCategoryPopper() {mContext.leaveCategory();}
|
||||
private:
|
||||
QgsReadWriteContext *mContext;
|
||||
QgsReadWriteContext &mContext;
|
||||
};
|
||||
|
||||
#endif // QGSREADWRITECONTEXT_H
|
||||
|
Loading…
x
Reference in New Issue
Block a user