summaryrefslogtreecommitdiffstats
path: root/src/tools/uic/ui4.h
diff options
context:
space:
mode:
authorEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>2020-09-02 11:49:49 +0200
committerEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>2020-09-03 07:31:45 +0200
commit0e0149c64dc9b4cf46f4e8f01e5680e7ea5372c4 (patch)
treeac2e3fb9a0eda3a2f67885d201fa448a049edb78 /src/tools/uic/ui4.h
parent6bbf3f0257603eb39d5511910e8bee1ed862b6cf (diff)
Ignore weight in .ui files instead of converting it
In 3558704ed5c3d2c6dc6d024dfa454997469ca75f, we added code to support old .ui files which used the old integer scale for font weights by checking for a special attribute which would help separate new and old files. Since then, it has become apparent that the weight element in .ui is not actually used for anything, since it is only emitted when the bold flag is set and always has to match QFont::Bold in these cases. So instead of converting, we simply ignore it now, and respect the bold flag instead. This also reverts the changes to ui4.* in uic, since the scale attribute is no longer needed. Task-number: QTBUG-42248 Change-Id: I1898868b58004099590f4eaf01f24c57bd34d779 Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Diffstat (limited to 'src/tools/uic/ui4.h')
-rw-r--r--src/tools/uic/ui4.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/tools/uic/ui4.h b/src/tools/uic/ui4.h
index 41f11644bd..a5ac51f521 100644
--- a/src/tools/uic/ui4.h
+++ b/src/tools/uic/ui4.h
@@ -1619,16 +1619,6 @@ public:
void read(QXmlStreamReader &reader);
void write(QXmlStreamWriter &writer, const QString &tagName = QString()) const;
- // attribute accessors
- inline bool hasAttributeScale() const { return m_has_attr_scale; }
- inline QString attributeScale() const { return m_attr_scale; }
- inline void setAttributeScale(const QString &a)
- {
- m_attr_scale = a;
- m_has_attr_scale = true;
- }
- inline void clearAttributeScale() { m_has_attr_scale = false; }
-
// child element accessors
inline QString elementFamily() const { return m_family; }
void setElementFamily(const QString &a);
@@ -1681,9 +1671,6 @@ public:
void clearElementKerning();
private:
- // attribute data
- QString m_attr_scale;
- bool m_has_attr_scale = false;
// child element data
uint m_children = 0;