Skip to content

Commit

Permalink
Fix accidental class rename
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Mar 22, 2018
1 parent 665f3e4 commit 016f228
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion python/gui/qgsmetadatawidget.sip.in
Expand Up @@ -61,7 +61,7 @@ Returns the widget's current mode.
%Docstring
Sets the ``metadata`` to display in the widget.

This method can be called after constructing a QgsAbstractMetadataBaseWidget in order
This method can be called after constructing a QgsMetadataWidget in order
to set the displayed metadata to custom, non-layer based metadata.

Calling this method will automatically setMode() to the correct mode corresponding
Expand Down
6 changes: 3 additions & 3 deletions src/gui/qgsmetadatawidget.h
Expand Up @@ -29,13 +29,13 @@

/**
* \ingroup gui
* \class QgsAbstractMetadataBaseWidget
* \class QgsMetadataWidget
* \brief A wizard to edit metadata on a map layer.
*
* \since QGIS 3.0
*/

class GUI_EXPORT QgsMetadataWidget : public QWidget, private Ui::QgsAbstractMetadataBaseWidget
class GUI_EXPORT QgsMetadataWidget : public QWidget, private Ui::QgsMetadataWidgetBase
{
Q_OBJECT

Expand Down Expand Up @@ -78,7 +78,7 @@ class GUI_EXPORT QgsMetadataWidget : public QWidget, private Ui::QgsAbstractMeta
/**
* Sets the \a metadata to display in the widget.
*
* This method can be called after constructing a QgsAbstractMetadataBaseWidget in order
* This method can be called after constructing a QgsMetadataWidget in order
* to set the displayed metadata to custom, non-layer based metadata.
*
* Calling this method will automatically setMode() to the correct mode corresponding
Expand Down
4 changes: 2 additions & 2 deletions src/ui/qgsmetadatawidget.ui
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>QgsAbstractMetadataBaseWidget</class>
<widget class="QWidget" name="QgsAbstractMetadataBaseWidget">
<class>QgsMetadataWidgetBase</class>
<widget class="QWidget" name="QgsMetadataWidgetBase">
<property name="geometry">
<rect>
<x>0</x>
Expand Down

0 comments on commit 016f228

Please sign in to comment.