aboutsummaryrefslogtreecommitdiffstats
path: root/src/controls/qquicklabel_p_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/controls/qquicklabel_p_p.h')
-rw-r--r--src/controls/qquicklabel_p_p.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/controls/qquicklabel_p_p.h b/src/controls/qquicklabel_p_p.h
index d57662a5..43f03382 100644
--- a/src/controls/qquicklabel_p_p.h
+++ b/src/controls/qquicklabel_p_p.h
@@ -52,12 +52,14 @@
QT_BEGIN_NAMESPACE
+class QQuickAccessibleAttached;
+
class QQuickLabelPrivate : public QQuickTextPrivate
{
Q_DECLARE_PUBLIC(QQuickLabel)
public:
- QQuickLabelPrivate() : background(Q_NULLPTR) { }
+ QQuickLabelPrivate() : background(Q_NULLPTR), accessibleAttached(Q_NULLPTR) { }
static QQuickLabelPrivate *get(QQuickLabel *item) {
return static_cast<QQuickLabelPrivate *>(QObjectPrivate::get(item)); }
@@ -72,7 +74,10 @@ public:
}
void resolveFont();
+ void _q_textChanged(const QString &text);
+
QQuickItem *background;
+ QQuickAccessibleAttached *accessibleAttached;
};
Q_DECLARE_TYPEINFO(QQuickLabelPrivate, Q_COMPLEX_TYPE);