Skip to content

Commit

Permalink
Fix build warnings due to differing virtual method signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jun 29, 2018
1 parent 63d0317 commit 18dbf03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/dwg/qgsdwgimporter.h
Expand Up @@ -57,7 +57,7 @@ class QgsDwgImporter : public DRW_Interface

void addBlock( const DRW_Block &data ) override;

void setBlock( int handle ) override;
void setBlock( const int handle ) override;

//! Called to end the current block
void endBlock() override;
Expand Down
2 changes: 1 addition & 1 deletion src/app/qgsattributesformproperties.h
Expand Up @@ -268,7 +268,7 @@ class DnDTree : public QTreeWidget
// QTreeWidget interface
protected:
QStringList mimeTypes() const override;
QMimeData *mimeData( QList<QTreeWidgetItem *> items ) const override;
QMimeData *mimeData( const QList<QTreeWidgetItem *> items ) const override;


private slots:
Expand Down

0 comments on commit 18dbf03

Please sign in to comment.