aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/abstractmetalang.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2020-11-30 18:19:14 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2020-12-01 06:31:41 +0000
commitb60055274431bbc33de9e182173281b608033708 (patch)
tree0af6d092f923fefea28a165ba733e8725e25c437 /sources/shiboken6/ApiExtractor/abstractmetalang.h
parent679326523dbf193b00cb410b828de4637b47c287 (diff)
shiboken6: Fix some functions to take a const AbstractMetaClass *
Change-Id: Iccee5cab96362250997daf39a354ddc7e8ab2909 Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'sources/shiboken6/ApiExtractor/abstractmetalang.h')
-rw-r--r--sources/shiboken6/ApiExtractor/abstractmetalang.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/shiboken6/ApiExtractor/abstractmetalang.h b/sources/shiboken6/ApiExtractor/abstractmetalang.h
index f0c08d673..f1380e9da 100644
--- a/sources/shiboken6/ApiExtractor/abstractmetalang.h
+++ b/sources/shiboken6/ApiExtractor/abstractmetalang.h
@@ -208,8 +208,8 @@ public:
/**
* \return the namespace from another package which this namespace extends.
*/
- AbstractMetaClass *extendedNamespace() const;
- void setExtendedNamespace(AbstractMetaClass *e);
+ const AbstractMetaClass *extendedNamespace() const;
+ void setExtendedNamespace(const AbstractMetaClass *e);
const AbstractMetaClassList &innerClasses() const;
void addInnerClass(AbstractMetaClass* cl);