Skip to content

Commit 016f228

Browse files
committed
Fix accidental class rename
1 parent 665f3e4 commit 016f228

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

python/gui/qgsmetadatawidget.sip.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Returns the widget's current mode.
6161
%Docstring
6262
Sets the ``metadata`` to display in the widget.
6363

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

6767
Calling this method will automatically setMode() to the correct mode corresponding

src/gui/qgsmetadatawidget.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@
2929

3030
/**
3131
* \ingroup gui
32-
* \class QgsAbstractMetadataBaseWidget
32+
* \class QgsMetadataWidget
3333
* \brief A wizard to edit metadata on a map layer.
3434
*
3535
* \since QGIS 3.0
3636
*/
3737

38-
class GUI_EXPORT QgsMetadataWidget : public QWidget, private Ui::QgsAbstractMetadataBaseWidget
38+
class GUI_EXPORT QgsMetadataWidget : public QWidget, private Ui::QgsMetadataWidgetBase
3939
{
4040
Q_OBJECT
4141

@@ -78,7 +78,7 @@ class GUI_EXPORT QgsMetadataWidget : public QWidget, private Ui::QgsAbstractMeta
7878
/**
7979
* Sets the \a metadata to display in the widget.
8080
*
81-
* This method can be called after constructing a QgsAbstractMetadataBaseWidget in order
81+
* This method can be called after constructing a QgsMetadataWidget in order
8282
* to set the displayed metadata to custom, non-layer based metadata.
8383
*
8484
* Calling this method will automatically setMode() to the correct mode corresponding

src/ui/qgsmetadatawidget.ui

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<ui version="4.0">
3-
<class>QgsAbstractMetadataBaseWidget</class>
4-
<widget class="QWidget" name="QgsAbstractMetadataBaseWidget">
3+
<class>QgsMetadataWidgetBase</class>
4+
<widget class="QWidget" name="QgsMetadataWidgetBase">
55
<property name="geometry">
66
<rect>
77
<x>0</x>

0 commit comments

Comments
 (0)