Remove "//! Destructor" doxygen comments

This documentation doesn't add any value
This commit is contained in:
Nyall Dawson 2016-12-30 13:10:34 +10:00
parent 8319dac253
commit 9021bb479c
119 changed files with 102 additions and 160 deletions

View File

@ -31,7 +31,7 @@ class ANALYSIS_EXPORT Bezier3D: public ParametricLine
Bezier3D();
//! Constructor, par is a pointer to the parent, controlpoly a controlpolygon
Bezier3D( ParametricLine* par, QVector<Point3D*>* controlpoly );
//! Destructor
virtual ~Bezier3D();
//! Do not use this method, since a Bezier curve does not consist of other curves
virtual void add( ParametricLine *pl ) override;

View File

@ -81,7 +81,6 @@ class ANALYSIS_EXPORT CloughTocherInterpolator : public TriangleInterpolator
CloughTocherInterpolator();
//! Constructor with a pointer to the triangulation as argument
CloughTocherInterpolator( NormVecDecorator* tin );
//! Destructor
virtual ~CloughTocherInterpolator();
//! Calculates the normal vector and assigns it to vec (not implemented at the moment)
virtual bool calcNormVec( double x, double y, Vector3D* result ) override;

View File

@ -29,7 +29,6 @@ class ANALYSIS_EXPORT LinTriangleInterpolator : public TriangleInterpolator
LinTriangleInterpolator();
//! Constructor with reference to a DualEdgeTriangulation object
LinTriangleInterpolator( DualEdgeTriangulation* tin );
//! Destructor
virtual ~LinTriangleInterpolator();
//! Calculates the normal vector and assigns it to vec
virtual bool calcNormVec( double x, double y, Vector3D* result ) override;

View File

@ -41,7 +41,6 @@ class ANALYSIS_EXPORT ParametricLine
/** Constructor, par is a pointer to the parent object, controlpoly the controlpolygon
*/
ParametricLine( ParametricLine* par, QVector<Point3D*>* controlpoly );
//! Destructor
virtual ~ParametricLine();
virtual void add( ParametricLine* pl ) = 0;
virtual void calcFirstDer( float t, Vector3D* v ) = 0;

View File

@ -42,7 +42,7 @@ class ANALYSIS_EXPORT Vector3D
Vector3D();
//! Copy constructor
Vector3D( const Vector3D& v );
//! Destructor
~Vector3D();
Vector3D& operator=( const Vector3D& v );
bool operator==( const Vector3D& v ) const;

View File

@ -50,7 +50,6 @@ class ANALYSIS_EXPORT QgsGraphBuilderInterface
mDa.setEllipsoidalMode( ctfEnabled );
}
//! Destructor
virtual ~QgsGraphBuilderInterface()
{ }

View File

@ -40,7 +40,7 @@ class ANALYSIS_EXPORT QgsGraphDirector : public QObject
void buildMessage( const QString& ) const;
public:
//! Destructor
virtual ~QgsGraphDirector() { }
/**

View File

@ -64,7 +64,6 @@ class ANALYSIS_EXPORT QgsVectorLayerDirector : public QgsGraphDirector
const Direction defaultDirection
);
//! Destructor
virtual ~QgsVectorLayerDirector();
/*

View File

@ -32,7 +32,7 @@ class QgsNewOgrConnection : public QDialog, private Ui::QgsNewOgrConnectionBase
public:
//! Constructor
QgsNewOgrConnection( QWidget *parent = nullptr, const QString& connType = QString::null, const QString& connName = QString::null, Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
//! Destructor
~QgsNewOgrConnection();
//! Tests the connection using the parameters supplied
void testConnection();

View File

@ -34,7 +34,6 @@ class QgsAppPluginManagerInterface : public QgsPluginManagerInterface
//! Constructor
explicit QgsAppPluginManagerInterface( QgsPluginManager * pluginManager );
//! Destructor
~QgsAppPluginManagerInterface();
//! remove python plugins from the metadata registry (c++ plugins stay)

View File

@ -50,7 +50,6 @@ class QgsPluginManager : public QgsOptionsDialogBase, private Ui::QgsPluginManag
//! Constructor; set pluginsAreEnabled to false in --noplugins mode
QgsPluginManager( QWidget *parent = nullptr, bool pluginsAreEnabled = true, Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
//! Destructor
~QgsPluginManager();
//! Save pointer to python utils and enable Python support

View File

@ -151,7 +151,7 @@ class APP_EXPORT QgisApp : public QMainWindow, private Ui::MainWindow
QgisApp( QSplashScreen *splash, bool restorePlugins = true, bool skipVersionCheck = false, QWidget *parent = nullptr, Qt::WindowFlags fl = Qt::Window );
//! Constructor for unit tests
QgisApp();
//! Destructor
~QgisApp();
/**

View File

@ -67,7 +67,6 @@ class APP_EXPORT QgsClipboard : public QObject
*/
QgsClipboard();
//! Destructor
virtual ~QgsClipboard();
/**

View File

@ -36,7 +36,7 @@ class APP_EXPORT QgsDecorationCopyright : public QgsDecorationItem
//! Constructor
QgsDecorationCopyright( QObject* parent = nullptr );
//! Destructor
virtual ~QgsDecorationCopyright();
public slots:

View File

@ -35,7 +35,7 @@ class APP_EXPORT QgsDecorationGrid: public QgsDecorationItem
public:
//! Constructor
QgsDecorationGrid( QObject* parent = nullptr );
//! Destructor
virtual ~ QgsDecorationGrid();
enum GridStyle

View File

@ -41,7 +41,7 @@ class APP_EXPORT QgsDecorationItem: public QObject
//! Constructor
QgsDecorationItem( QObject* parent = nullptr );
//! Destructor
virtual ~ QgsDecorationItem();
void setEnabled( bool enabled ) { mEnabled = enabled; }

View File

@ -34,7 +34,7 @@ class APP_EXPORT QgsDecorationNorthArrow: public QgsDecorationItem
public:
//! Constructor
QgsDecorationNorthArrow( QObject* parent = nullptr );
//! Destructor
virtual ~QgsDecorationNorthArrow();
public slots:

View File

@ -34,7 +34,7 @@ class APP_EXPORT QgsDecorationScaleBar: public QgsDecorationItem
public:
//! Constructor
QgsDecorationScaleBar( QObject* parent = nullptr );
//! Destructor
virtual ~ QgsDecorationScaleBar();
public slots:

View File

@ -929,7 +929,7 @@ QgsOptions::QgsOptions( QWidget *parent, Qt::WindowFlags fl )
restoreOptionsBaseUi();
}
//! Destructor
QgsOptions::~QgsOptions()
{
delete mSettings;

View File

@ -46,7 +46,7 @@ class APP_EXPORT QgsOptions : public QgsOptionsDialogBase, private Ui::QgsOption
* @param modal true for modal dialog
*/
QgsOptions( QWidget *parent = nullptr, Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
//! Destructor
~QgsOptions();
/** Sets the page with the specified widget name as the current page

View File

@ -43,7 +43,7 @@ class APP_EXPORT QgsProjectProperties : public QgsOptionsDialogBase, private Ui:
//! Constructor
QgsProjectProperties( QgsMapCanvas* mapCanvas, QWidget *parent = nullptr, Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
//! Destructor
~QgsProjectProperties();
/** Gets the currently select map units

View File

@ -48,7 +48,7 @@ class APP_EXPORT QgsRasterLayerProperties : public QgsOptionsDialogBase, private
* @param ml Map layer for which properties will be displayed
*/
QgsRasterLayerProperties( QgsMapLayer *lyr, QgsMapCanvas* theCanvas, QWidget *parent = nullptr, Qt::WindowFlags = QgisGui::ModalDialogFlags );
//! \brief Destructor
~QgsRasterLayerProperties();
//! Synchronize state with associated raster layer

View File

@ -55,7 +55,7 @@ class APP_EXPORT QgsSnappingWidget : public QWidget
*/
QgsSnappingWidget( QgsProject* project, QgsMapCanvas* canvas, QWidget* parent = nullptr );
//! Destructor
virtual ~QgsSnappingWidget();
/**

View File

@ -40,7 +40,7 @@ class APP_EXPORT QgsStatusBarMagnifierWidget : public QWidget
*/
QgsStatusBarMagnifierWidget( QWidget* parent = nullptr );
//! Destructor
virtual ~QgsStatusBarMagnifierWidget();
void setDefaultFactor( double factor );

View File

@ -39,7 +39,7 @@ class APP_EXPORT QgsStatusBarScaleWidget : public QWidget
public:
explicit QgsStatusBarScaleWidget( QgsMapCanvas* canvas, QWidget *parent = 0 );
//! Destructor
virtual ~QgsStatusBarScaleWidget();
/**

View File

@ -33,7 +33,7 @@ class APP_EXPORT QgsTipFactory : public QObject
public:
//! Constructor
QgsTipFactory();
//! Destructor
~QgsTipFactory();
/** Get a random tip (generic or gui-centric)

View File

@ -45,7 +45,7 @@ class CORE_EXPORT QgsComposerNodesItem: public QgsComposerItem
*/
QgsComposerNodesItem( const QString &mTagName, const QPolygonF &polygon, QgsComposition* c );
//! Destructor
~QgsComposerNodesItem();
/** Add a node in current shape.

View File

@ -45,7 +45,7 @@ class CORE_EXPORT QgsComposerPolygon: public QgsComposerNodesItem
*/
QgsComposerPolygon( const QPolygonF &polygon, QgsComposition* c );
//! Destructor
~QgsComposerPolygon();
//! Overridden to return shape name

View File

@ -44,7 +44,7 @@ class CORE_EXPORT QgsComposerPolyline: public QgsComposerNodesItem
*/
QgsComposerPolyline( const QPolygonF &polyline, QgsComposition* c );
//! Destructor
~QgsComposerPolyline();
//! Overridden to return shape name

View File

@ -95,7 +95,7 @@ class CORE_EXPORT QgsGeometry
*/
explicit QgsGeometry( QgsAbstractGeometry* geom );
//! Destructor
~QgsGeometry();
/** Returns the underlying geometry store.

View File

@ -56,7 +56,7 @@ class CORE_EXPORT QgsAttributeEditorElement
, mShowLabel( true )
{}
//! Destructor
virtual ~QgsAttributeEditorElement() {}
/**
@ -155,7 +155,7 @@ class CORE_EXPORT QgsAttributeEditorContainer : public QgsAttributeEditorElement
, mColumnCount( 1 )
{}
//! Destructor
virtual ~QgsAttributeEditorContainer();
/**
@ -269,7 +269,7 @@ class CORE_EXPORT QgsAttributeEditorField : public QgsAttributeEditorElement
, mIdx( idx )
{}
//! Destructor
virtual ~QgsAttributeEditorField() {}
/**
@ -322,7 +322,7 @@ class CORE_EXPORT QgsAttributeEditorRelation : public QgsAttributeEditorElement
, mShowUnlinkButton( true )
{}
//! Destructor
virtual ~QgsAttributeEditorRelation() {}
/**

View File

@ -45,7 +45,7 @@ class CORE_EXPORT QgsContextHelp : public QObject
private:
//! Constructor
QgsContextHelp();
//! Destructor
~QgsContextHelp();
QProcess *start();

View File

@ -37,7 +37,7 @@
class CORE_EXPORT QgsCredentials
{
public:
//! virtual destructor
virtual ~QgsCredentials();
bool get( const QString& realm, QString &username, QString &password, const QString& message = QString::null );

View File

@ -41,7 +41,7 @@ class CORE_EXPORT QgsDistanceArea
//! Constructor
QgsDistanceArea();
//! Destructor
~QgsDistanceArea();
//! Copy constructor

View File

@ -172,7 +172,7 @@ class CORE_EXPORT QgsFeature
bool operator!=( const QgsFeature& other ) const;
//! Destructor
virtual ~QgsFeature();
/** Get the feature ID for this feature.

View File

@ -40,7 +40,7 @@ class CORE_EXPORT QgsFeatureFilterProvider
//! Constructor
QgsFeatureFilterProvider() {}
//! Destructor
virtual ~QgsFeatureFilterProvider() {}
/** Add additional filters to the feature request to further restrict the features returned by the request.

View File

@ -89,7 +89,7 @@ class CORE_EXPORT QgsField
*/
QgsField& operator =( const QgsField &other );
//! Destructor
virtual ~QgsField();
bool operator==( const QgsField& other ) const;

View File

@ -43,7 +43,7 @@ class CORE_EXPORT QgsAbstractLabelProvider
public:
//! Construct the provider with default values
QgsAbstractLabelProvider( const QString& layerId = QString(), const QString& providerId = QString() );
//! Vritual destructor
virtual ~QgsAbstractLabelProvider() {}
//! Associate provider with a labeling engine (should be only called internally from QgsLabelingEngine)

View File

@ -42,7 +42,6 @@ class CORE_EXPORT QgsMessageOutput
//! message can be in plain text or in html format
enum MessageType { MessageText, MessageHtml };
//! virtual destructor
virtual ~QgsMessageOutput();
//! set message, it won't be displayed until

View File

@ -52,7 +52,7 @@ class CORE_EXPORT QgsNetworkAccessManager : public QNetworkAccessManager
QgsNetworkAccessManager( QObject *parent = nullptr );
//! destructor
~QgsNetworkAccessManager();
//! insert a factory into the proxy factories list

View File

@ -43,7 +43,7 @@ class CORE_EXPORT QgsOwsConnection : public QObject
*/
QgsOwsConnection( const QString & theService, const QString & theConnName );
//! Destructor
~QgsOwsConnection();
//! Returns the list of connections for the specified service

View File

@ -43,7 +43,7 @@ class CORE_EXPORT QgsRectangle
QgsRectangle( const QRectF & qRectF );
//! Copy constructor
QgsRectangle( const QgsRectangle &other );
//! Destructor
~QgsRectangle();
//! Set the rectangle from two QgsPoints. The rectangle is
//! normalised after construction.

View File

@ -39,7 +39,7 @@ class CORE_EXPORT QgsRenderChecker
QgsRenderChecker();
//! Destructor
~QgsRenderChecker() {}
QString controlImagePath() const;

View File

@ -117,9 +117,6 @@ class CORE_EXPORT QgsVectorDataProvider : public QgsDataProvider
*/
QgsVectorDataProvider( const QString& uri = QString() );
/**
* Destructor
*/
virtual ~QgsVectorDataProvider();
/**

View File

@ -182,7 +182,7 @@ class CORE_EXPORT QgsVectorFileWriter
//! Constructor
FieldValueConverter();
//! Destructor
virtual ~FieldValueConverter();
/** Return a possibly modified field definition. Default implementation will return provided field unmodified.
@ -337,7 +337,7 @@ class CORE_EXPORT QgsVectorFileWriter
//! Constructor
SaveVectorOptions();
//! Destructor
virtual ~SaveVectorOptions();
//! OGR driver to use

View File

@ -454,7 +454,7 @@ class CORE_EXPORT QgsVectorLayer : public QgsMapLayer, public QgsExpressionConte
QgsVectorLayer( const QString& path = QString::null, const QString& baseName = QString::null,
const QString& providerLib = QString::null, bool loadDefaultStyleFlag = true );
//! Destructor
virtual ~QgsVectorLayer();
//! Returns the permanent storage type for this layer as a friendly name.

View File

@ -63,8 +63,6 @@ class CORE_EXPORT QgsColorRampShader : public QgsRasterShaderFunction
*/
QgsColorRampShader( double theMinimumValue = 0.0, double theMaximumValue = 255.0, QgsColorRamp* theColorRamp = nullptr, Type theType = Interpolated, ClassificationMode theClassificationMode = Continuous );
/** Destructor
*/
virtual ~QgsColorRampShader();
/** Copy constructor

View File

@ -31,7 +31,7 @@ class CORE_EXPORT QgsRasterChecker
QgsRasterChecker();
//! Destructor
~QgsRasterChecker() {}
QString report() { return mReport; }

View File

@ -56,7 +56,7 @@ class CORE_EXPORT QgsImageFetcher : public QObject
public:
//! Constructor
QgsImageFetcher( QObject* parent = 0 ) : QObject( parent ) {}
//! Destructor
virtual ~QgsImageFetcher() {}
/** Starts the image download

View File

@ -193,7 +193,6 @@ class CORE_EXPORT QgsRasterLayer : public QgsMapLayer
const QString &providerKey,
bool loadDefaultStyleFlag = true );
//! \brief The destructor
~QgsRasterLayer();
//! \brief This enumerator describes the types of shading that can be used

View File

@ -56,7 +56,6 @@ class CORE_EXPORT QgsRasterProjector : public QgsRasterInterface
QgsRasterProjector();
//! \brief The destructor
~QgsRasterProjector();
QgsRasterProjector *clone() const override;

View File

@ -52,9 +52,6 @@ class GUI_EXPORT QgsFeatureListView : public QListView
*/
explicit QgsFeatureListView( QWidget* parent = nullptr );
/**
* Destructor
*/
virtual ~QgsFeatureListView() {}
/**

View File

@ -44,9 +44,6 @@ class GUI_EXPORT QgsOrganizeTableColumnsDialog : public QDialog, private Ui::Qgs
*/
QgsOrganizeTableColumnsDialog( const QgsVectorLayer* vl, QWidget* parent = nullptr, Qt::WindowFlags flags = Qt::Window );
/**
* Destructor
*/
~QgsOrganizeTableColumnsDialog();
/**

View File

@ -71,9 +71,6 @@ class GUI_EXPORT QgsEditorConfigWidget : public QWidget
*/
QgsVectorLayer* layer();
/**
* Destructor
*/
virtual ~QgsEditorConfigWidget() {}
signals:

View File

@ -72,7 +72,6 @@ class GUI_EXPORT QgisInterface : public QObject
//! Constructor
QgisInterface();
//! Virtual destructor
virtual ~QgisInterface();
virtual QgsPluginManagerInterface* pluginManagerInterface() = 0;

View File

@ -76,9 +76,6 @@ class GUI_EXPORT QgsActionMenu : public QMenu
*/
explicit QgsActionMenu( QgsVectorLayer *layer, const QgsFeatureId fid, const QString& actionScope, QWidget *parent = nullptr );
/**
* Destructor
*/
~QgsActionMenu();
/**

View File

@ -61,7 +61,7 @@ void QgsGenericProjectionSelector::setMessage( QString theMessage )
textEdit->setHtml( theMessage );
textEdit->show();
}
//! Destructor
QgsGenericProjectionSelector::~QgsGenericProjectionSelector()
{
QSettings settings;

View File

@ -55,7 +55,7 @@ class GUI_EXPORT QgsGenericProjectionSelector : public QDialog, private Ui::QgsG
QgsGenericProjectionSelector( QWidget *parent = nullptr,
Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
//! Destructor
~QgsGenericProjectionSelector();
public slots:

View File

@ -79,7 +79,7 @@ class GUI_EXPORT QgsMapCanvas : public QGraphicsView
//! Constructor
QgsMapCanvas( QWidget * parent = nullptr );
//! Destructor
~QgsMapCanvas();
//! Returns the magnification factor

View File

@ -37,7 +37,7 @@ class GUI_EXPORT QgsMapLayerConfigWidgetFactory
//! Constructor
QgsMapLayerConfigWidgetFactory( const QString &title, const QIcon &icon );
//! Destructor
virtual ~QgsMapLayerConfigWidgetFactory();
/**

View File

@ -55,8 +55,6 @@ class GUI_EXPORT QgsMapTip : public QWidget
*/
QgsMapTip();
/** Destructor
*/
virtual ~QgsMapTip();
/** Show a maptip at a given point on the map canvas

View File

@ -71,7 +71,6 @@ class GUI_EXPORT QgsMapTool : public QObject
*/
virtual Flags flags() const { return Flags(); }
//! virtual destructor
virtual ~QgsMapTool();
//! Mouse move event for overriding. Default implementation does nothing.

View File

@ -40,7 +40,7 @@ class GUI_EXPORT QgsMapToolCapture : public QgsMapToolAdvancedDigitizing
//! constructor
QgsMapToolCapture( QgsMapCanvas* canvas, QgsAdvancedDigitizingDockWidget* cadDockWidget, CaptureMode mode = CaptureNone );
//! destructor
virtual ~QgsMapToolCapture();
//! active the tool

View File

@ -33,7 +33,7 @@ class GUI_EXPORT QgsNewHttpConnection : public QDialog, private Ui::QgsNewHttpCo
public:
//! Constructor
QgsNewHttpConnection( QWidget *parent = nullptr, const QString& baseKey = "/Qgis/connections-wms/", const QString& connName = QString::null, Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
//! Destructor
~QgsNewHttpConnection();
public slots:
//! Saves the connection to ~/.qt/qgisrc

View File

@ -58,7 +58,7 @@ class GUI_EXPORT QgsOWSSourceSelect : public QDialog, public Ui::QgsOWSSourceSel
//! Constructor
QgsOWSSourceSelect( const QString& service, QWidget *parent = nullptr, Qt::WindowFlags fl = QgisGui::ModalDialogFlags, bool managerMode = false, bool embeddedMode = false );
//! Destructor
~QgsOWSSourceSelect();
public slots:

View File

@ -34,7 +34,6 @@ class GUI_EXPORT QgsPluginManagerInterface : public QObject
//! Constructor
QgsPluginManagerInterface();
//! Virtual destructor
virtual ~QgsPluginManagerInterface();
//! remove python plugins from the metadata registry (c++ plugins stay)

View File

@ -38,7 +38,7 @@ class GUI_EXPORT QgsSourceSelectDialog : public QDialog, protected Ui::QgsSource
//! Constructor
QgsSourceSelectDialog( const QString& serviceName, ServiceType serviceType, QWidget* parent, Qt::WindowFlags fl );
//! Destructor
~QgsSourceSelectDialog();
//! Sets the current extent and CRS. Used to select an appropriate CRS and possibly to retrieve data only in the current extent
void setCurrentExtentAndCrs( const QgsRectangle& canvasExtent, const QgsCoordinateReferenceSystem& canvasCrs );

View File

@ -37,7 +37,7 @@ class GUI_EXPORT QgsSymbolsListWidget : public QWidget, private Ui::SymbolsListW
public:
QgsSymbolsListWidget( QgsSymbol* symbol, QgsStyle* style, QMenu* menu, QWidget* parent, const QgsVectorLayer * layer = nullptr );
//! Destructor
virtual ~QgsSymbolsListWidget();
/** Sets the context in which the symbol widget is shown, e.g., the associated map canvas and expression contexts.

View File

@ -80,7 +80,7 @@ class CoordinateCapture: public QObject, public QgisPlugin
* @param theInterface Pointer to the QgisInterface object.
*/
explicit CoordinateCapture( QgisInterface * theInterface );
//! Destructor
virtual ~CoordinateCapture();
public slots:

View File

@ -84,9 +84,6 @@ eVisDatabaseConnectionGui::eVisDatabaseConnectionGui( QList<QTemporaryFile*>* th
pbtnLoadPredefinedQueries->setToolTip( tr( "Open File" ) );
}
/**
* Destructor
*/
eVisDatabaseConnectionGui::~eVisDatabaseConnectionGui()
{
QSettings settings;

View File

@ -52,7 +52,6 @@ class eVisDatabaseConnectionGui : public QDialog, private Ui::eVisDatabaseConnec
//! \brief Constructor
eVisDatabaseConnectionGui( QList<QTemporaryFile*>*, QWidget* parent = nullptr, Qt::WindowFlags fl = 0 );
//! \brief Destructor
~eVisDatabaseConnectionGui();
private:

View File

@ -61,7 +61,6 @@ class eVisGenericEventBrowserGui : public QDialog, private Ui::eVisGenericEventB
//! \brief Constructor called when new browser is requested by the eVisEventIdTool
eVisGenericEventBrowserGui( QWidget* parent, QgsMapCanvas* canvas, Qt::WindowFlags fl );
//! \Brief Destructor
~eVisGenericEventBrowserGui();
protected:

View File

@ -51,7 +51,6 @@ class eVisImageDisplayWidget : public QWidget
//! \brief Constructor
eVisImageDisplayWidget( QWidget* parent = nullptr, Qt::WindowFlags fl = 0 );
//! \brief Destructor
~eVisImageDisplayWidget();
//! \brief Load an image from disk and display

View File

@ -94,7 +94,6 @@ class eVis: public QObject, public QgisPlugin
//! Constructor
explicit eVis( QgisInterface * theInterface );
//! Destructor */
~eVis();
public slots:

View File

@ -75,7 +75,7 @@ class QgsGeorefPlugin: public QObject, public QgisPlugin
* @param Pointer to the QgisIface object.
*/
explicit QgsGeorefPlugin( QgisInterface * );
//! Destructor
virtual ~ QgsGeorefPlugin();
public slots:

View File

@ -41,7 +41,7 @@ class QgsGPSPlugin: public QObject, public QgisPlugin
*/
explicit QgsGPSPlugin( QgisInterface * );
//! Destructor
virtual ~QgsGPSPlugin();
public slots:

View File

@ -43,7 +43,7 @@ class QgsGrassMapcalc: public QMainWindow, private Ui::QgsGrassMapcalcBase,
QgisInterface *iface,
QWidget * parent = 0, Qt::WindowFlags f = 0 );
//! Destructor
~QgsGrassMapcalc();
// Current tool

View File

@ -51,7 +51,7 @@ class QgsGrassModule : public QWidget, private Ui::QgsGrassModuleBase
QgsGrassModule( QgsGrassTools *tools, QString moduleName, QgisInterface *iface,
bool direct, QWidget *parent = 0, Qt::WindowFlags f = 0 );
//! Destructor
~QgsGrassModule();
QString translate( QString string );

View File

@ -243,7 +243,7 @@ class QgsGrassModuleInput : public QgsGrassModuleGroupBoxItem
QDomElement &qdesc, QDomElement &gdesc, QDomNode &gnode,
bool direct, QWidget * parent = 0 );
//! Destructor
~QgsGrassModuleInput();
//! Retruns list of options which will be passed to module

View File

@ -55,7 +55,7 @@ class QgsGrassModuleOptions
QgsGrassTools *tools, QgsGrassModule *module,
QgisInterface *iface, bool direct );
//! Destructor
virtual ~QgsGrassModuleOptions();
//! Get module options as list of arguments for QProcess
@ -149,7 +149,7 @@ class QgsGrassModuleStandardOptions: public QWidget, public QgsGrassModuleOption
QString xname, QDomElement confDocElem,
bool direct, QWidget * parent = 0, Qt::WindowFlags f = 0 );
//! Destructor
~QgsGrassModuleStandardOptions();
//! Get module options as list of arguments for QProcess

View File

@ -59,7 +59,7 @@ class QgsGrassModuleCheckBox : public QCheckBox
*/
QgsGrassModuleCheckBox( const QString & text, QWidget * parent = 0 );
//! Destructor
virtual ~QgsGrassModuleCheckBox();
void resizeEvent( QResizeEvent * event ) override;
@ -93,7 +93,7 @@ class QgsGrassModuleParam
QgsGrassModuleParam( QgsGrassModule *module, QString key,
QDomElement &qdesc, QDomElement &gdesc, QDomNode &gnode, bool direct );
//! Destructor
virtual ~QgsGrassModuleParam();
//! Is the item hidden
@ -184,7 +184,7 @@ class QgsGrassModuleGroupBoxItem : public QGroupBox, public QgsGrassModuleParam
QDomElement &qdesc, QDomElement &gdesc, QDomNode &gnode,
bool direct, QWidget * parent = 0 );
//! Destructor
virtual ~QgsGrassModuleGroupBoxItem();
void resizeEvent( QResizeEvent * event ) override;
@ -250,7 +250,7 @@ class QgsGrassModuleOption : public QgsGrassModuleMultiParam
QDomElement &qdesc, QDomElement &gdesc, QDomNode &gnode,
bool direct, QWidget * parent = 0 );
//! Destructor
~QgsGrassModuleOption();
//! Control option
@ -356,7 +356,7 @@ class QgsGrassModuleFlag : public QgsGrassModuleCheckBox, public QgsGrassModuleP
QDomElement &qdesc, QDomElement &gdesc, QDomNode &gnode,
bool direct, QWidget * parent = 0 );
//! Destructor
~QgsGrassModuleFlag();
//! Retruns list of options which will be passed to module
@ -384,7 +384,7 @@ class QgsGrassModuleGdalInput : public QgsGrassModuleGroupBoxItem
QDomElement &qdesc, QDomElement &gdesc, QDomNode &gnode,
bool direct, QWidget * parent = 0 );
//! Destructor
~QgsGrassModuleGdalInput();
//! Reimplemented
@ -446,7 +446,7 @@ class QgsGrassModuleField : public QgsGrassModuleOption
QDomElement &qdesc, QDomElement &gdesc, QDomNode &gnode,
bool direct, QWidget * parent = 0 );
//! Destructor
~QgsGrassModuleField();
};
@ -471,7 +471,7 @@ class QgsGrassModuleVectorField : public QgsGrassModuleMultiParam
QDomElement &qdesc, QDomElement &gdesc, QDomNode &gnode,
bool direct, QWidget * parent = 0 );
//! Destructor
~QgsGrassModuleVectorField();
//! Retruns list of options which will be passed to module
@ -536,7 +536,7 @@ class QgsGrassModuleSelection : public QgsGrassModuleGroupBoxItem
QDomNode &gnode,
bool direct, QWidget * parent = 0 );
//! Destructor
~QgsGrassModuleSelection();
//! Retruns list of options which will be passed to module
@ -602,7 +602,7 @@ class QgsGrassModuleFile : public QgsGrassModuleGroupBoxItem
QDomNode &gnode,
bool direct, QWidget *parent = 0 );
//! Destructor
~QgsGrassModuleFile();
//! File type

View File

@ -55,7 +55,7 @@ class QgsGrassNewMapset : public QWizard, private Ui::QgsGrassNewMapsetBase
QgsGrassPlugin *plugin,
QWidget * parent = 0, Qt::WindowFlags f = 0 );
//! Destructor
~QgsGrassNewMapset();
//! Next page

View File

@ -78,7 +78,7 @@ class QgsGrassPlugin : public QObject, public QgisPlugin
* Return the plugin type
*/
virtual int type();
//! Destructor
virtual ~QgsGrassPlugin();
//! Get an icon from the active theme if possible

View File

@ -50,7 +50,7 @@ class QgsGrassRegion: public QWidget, private Ui::QgsGrassRegionBase
QgsGrassRegion( QgisInterface *iface,
QWidget * parent = 0, Qt::WindowFlags f = 0 );
//! Destructor
~QgsGrassRegion();
public slots:

View File

@ -29,7 +29,7 @@ class QgsGrassSelect: public QDialog, private Ui::QgsGrassSelectBase
//! Constructor
//QgsGrassSelect(QWidget *parent = 0, int type = VECTOR );
QgsGrassSelect( QWidget *parent, int type = VECTOR );
//! Destructor
~QgsGrassSelect();
enum TYPE

View File

@ -44,7 +44,7 @@ class QgsGrassTools: public QgsDockWidget, public Ui::QgsGrassToolsBase
QgsGrassTools( QgisInterface *iface,
QWidget * parent = 0, const char * name = 0, Qt::WindowFlags f = 0 );
//! Destructor
~QgsGrassTools();
//! Append item to model or parent

View File

@ -33,7 +33,7 @@ class QgsGrassUtils
//! Constructor
QgsGrassUtils();
//! Destructor
~QgsGrassUtils();
public:
@ -62,7 +62,7 @@ class QgsGrassElementDialog: public QObject
//! Constructor
explicit QgsGrassElementDialog( QWidget *parent );
//! Destructor
~QgsGrassElementDialog();
public:

View File

@ -36,9 +36,6 @@ class QgsGeometryCoordinateTransform
*/
QgsGeometryCoordinateTransform();
/**
* \brief Destructor
*/
~QgsGeometryCoordinateTransform();
/**

View File

@ -34,9 +34,6 @@ class MngProgressBar
*/
explicit MngProgressBar( QProgressBar *pb );
/**
* \brief Destructor
*/
~MngProgressBar() { mPb->reset(); }
/**

View File

@ -37,9 +37,6 @@ class QgsRubberSelectId
*/
explicit QgsRubberSelectId( QgsMapCanvas* mapCanvas );
/**
* \brief Destructor
*/
~QgsRubberSelectId();
/**

View File

@ -59,9 +59,6 @@ class QgsSpatialQuery
*/
explicit QgsSpatialQuery( MngProgressBar *pb );
/**
* \brief Destructor
*/
~QgsSpatialQuery();
/**

View File

@ -41,7 +41,7 @@ class QgsSpatialQueryDialog : public QDialog, private Ui::QgsSpatialQueryDialogB
* @param iface Pointer to the QgisInterface object.
*/
QgsSpatialQueryDialog( QWidget *parent = nullptr, QgisInterface* iface = nullptr );
//! Destructor
~QgsSpatialQueryDialog();
//! Verify is possible execute the query

View File

@ -52,7 +52,7 @@ class QgsSpatialQueryPlugin: public QObject, public QgisPlugin
* \param iface Pointer to the QgisInterface object.
*/
explicit QgsSpatialQueryPlugin( QgisInterface* iface );
//! Destructor
~QgsSpatialQueryPlugin();
public slots:

View File

@ -71,7 +71,7 @@ class Topol: public QObject, public QgisPlugin
* @param theInterface Pointer to the QgisInterface object.
*/
explicit Topol( QgisInterface * theInterface );
//! Destructor
virtual ~Topol();
public slots:

View File

@ -123,9 +123,6 @@ class TopolError
*/
TopolError( const QgsRectangle& theBoundingBox, const QgsGeometry& theConflict, const QList<FeatureLayer>& theFeaturePairs );
/**
* Destructor
*/
virtual ~TopolError() {}
/**

View File

@ -33,7 +33,7 @@ class QgsDb2NewConnection : public QDialog, private Ui::QgsDb2NewConnectionBase
//! Constructor
QgsDb2NewConnection( QWidget *parent = 0, const QString& connName = QString::null, Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
//! Destructor
~QgsDb2NewConnection();
//! Tests the connection using the parameters supplied

View File

@ -98,7 +98,7 @@ class QgsDb2SourceSelect : public QDialog, private Ui::QgsDbSourceSelectBase
//! Constructor
QgsDb2SourceSelect( QWidget *parent = 0, Qt::WindowFlags fl = QgisGui::ModalDialogFlags, bool managerMode = false, bool embeddedMode = false );
//! Destructor
~QgsDb2SourceSelect();
//! Populate the connection list combo box
void populateConnectionList();

View File

@ -99,7 +99,7 @@ class GRASS_LIB_EXPORT QgsGrassRasterProvider : public QgsRasterDataProvider
*/
explicit QgsGrassRasterProvider( QString const & uri = 0 );
//! Destructor
~QgsGrassRasterProvider();
QgsRasterInterface * clone() const override;

View File

@ -32,7 +32,7 @@ class QgsMssqlNewConnection : public QDialog, private Ui::QgsMssqlNewConnectionB
//! Constructor
QgsMssqlNewConnection( QWidget *parent = nullptr, const QString& connName = QString::null, Qt::WindowFlags fl = QgisGui::ModalDialogFlags );
//! Destructor
~QgsMssqlNewConnection();
//! Tests the connection using the parameters supplied

View File

@ -96,7 +96,7 @@ class QgsMssqlSourceSelect : public QDialog, private Ui::QgsDbSourceSelectBase
//! Constructor
QgsMssqlSourceSelect( QWidget *parent = nullptr, Qt::WindowFlags fl = QgisGui::ModalDialogFlags, bool managerMode = false, bool embeddedMode = false );
//! Destructor
~QgsMssqlSourceSelect();
//! Populate the connection list combo box
void populateConnectionList();

Some files were not shown because too many files have changed in this diff Show More