mirror of https://github.com/procxx/kepka.git
Fix build of the new TWidgetHelper<> for GCC, finally.
Also fixed a char-related warning in codegen project.
This commit is contained in:
parent
232ed0a7c0
commit
25f90b5159
|
@ -127,7 +127,7 @@ QString stringToEncodedString(const QString &str) {
|
||||||
} else if (ch == '"' || ch == '\\') {
|
} else if (ch == '"' || ch == '\\') {
|
||||||
writingHexEscapedCharacters = false;
|
writingHexEscapedCharacters = false;
|
||||||
result.append('\\').append(ch);
|
result.append('\\').append(ch);
|
||||||
} else if (ch < 32 || ch > 127) {
|
} else if (ch < 32 || static_cast<uchar>(ch) > 127) {
|
||||||
writingHexEscapedCharacters = true;
|
writingHexEscapedCharacters = true;
|
||||||
result.append("\\x").append(hexFirstChar(ch)).append(hexSecondChar(ch));
|
result.append("\\x").append(hexFirstChar(ch)).append(hexSecondChar(ch));
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -220,6 +220,9 @@ private:
|
||||||
return qobject_cast<const TWidget*>(Base::parentWidget());
|
return qobject_cast<const TWidget*>(Base::parentWidget());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <typename OtherBase>
|
||||||
|
friend class TWidgetHelper;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class TWidget : public TWidgetHelper<QWidget> {
|
class TWidget : public TWidgetHelper<QWidget> {
|
||||||
|
@ -303,9 +306,6 @@ protected:
|
||||||
return height();
|
return height();
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename Base>
|
|
||||||
friend class TWidgetHelper;
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename Widget>
|
template <typename Widget>
|
||||||
|
|
Loading…
Reference in New Issue