forked from qt-creator/qt-creator
CppEditor: Fix GenerateGetterSetter for reference types
Change-Id: Iad332cf023c6bff0c7f5ae46fb56f0393c9c7b29 Reviewed-by: Orgad Shaneh <orgads@gmail.com> Reviewed-by: Nikolai Kosjar <nikolai.kosjar@qt.io>
This commit is contained in:
committed by
Orgad Shaneh
parent
6e6d5b5309
commit
49c6710b42
@@ -3018,10 +3018,12 @@ public:
|
||||
if (passByValue) {
|
||||
paramString = oo.prettyType(fullySpecifiedType, paramName);
|
||||
} else {
|
||||
FullySpecifiedType constParamType(fullySpecifiedType);
|
||||
const ReferenceType *refType = type->asReferenceType();
|
||||
FullySpecifiedType constParamType(refType ? refType->elementType()
|
||||
: fullySpecifiedType);
|
||||
constParamType.setConst(true);
|
||||
QScopedPointer<ReferenceType> referenceType(new ReferenceType(constParamType, false));
|
||||
FullySpecifiedType referenceToConstParamType(referenceType.data());
|
||||
const FullySpecifiedType referenceToConstParamType(referenceType.data());
|
||||
paramString = oo.prettyType(referenceToConstParamType, paramName);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user