Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix build
  • Loading branch information
nyalldawson committed Nov 20, 2019
1 parent 9a2e015 commit 0b68834
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gui/qgsoptionswidgetfactory.h
Expand Up @@ -57,7 +57,7 @@ class GUI_EXPORT QgsOptionsPageWidget : public QWidget
* Returns the registered highlight widgets used to search and highlight text in
* options dialogs.
*/
QMap<QWidget *, QgsOptionsDialogHighlightWidget *> registeredHighlightWidgets() {return mHighlighWidgets;} SIP_SKIP
QHash<QWidget *, QgsOptionsDialogHighlightWidget *> registeredHighlightWidgets() {return mHighlightWidgets;} SIP_SKIP


public slots:
Expand All @@ -77,11 +77,11 @@ class GUI_EXPORT QgsOptionsPageWidget : public QWidget
*/
void registerHighlightWidget( QgsOptionsDialogHighlightWidget *highlightWidget )
{
mHighlighWidgets.insert( highlightWidget->widget(), highlightWidget );
mHighlightWidgets.insert( highlightWidget->widget(), highlightWidget );
}

private:
QMap<QWidget *, QgsOptionsDialogHighlightWidget *> mHighlighWidgets;
QHash<QWidget *, QgsOptionsDialogHighlightWidget *> mHighlightWidgets;


};
Expand Down

0 comments on commit 0b68834

Please sign in to comment.