summaryrefslogtreecommitdiffstats
path: root/examples/widgets/richtext/textedit/textedit.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/richtext/textedit/textedit.h')
-rw-r--r--examples/widgets/richtext/textedit/textedit.h46
1 files changed, 24 insertions, 22 deletions
diff --git a/examples/widgets/richtext/textedit/textedit.h b/examples/widgets/richtext/textedit/textedit.h
index 2477953d11..87f59ddbf1 100644
--- a/examples/widgets/richtext/textedit/textedit.h
+++ b/examples/widgets/richtext/textedit/textedit.h
@@ -46,13 +46,15 @@
#include <QMap>
#include <QPointer>
-QT_FORWARD_DECLARE_CLASS(QAction)
-QT_FORWARD_DECLARE_CLASS(QComboBox)
-QT_FORWARD_DECLARE_CLASS(QFontComboBox)
-QT_FORWARD_DECLARE_CLASS(QTextEdit)
-QT_FORWARD_DECLARE_CLASS(QTextCharFormat)
-QT_FORWARD_DECLARE_CLASS(QMenu)
-QT_FORWARD_DECLARE_CLASS(QPrinter)
+QT_BEGIN_NAMESPACE
+class QAction;
+class QComboBox;
+class QFontComboBox;
+class QTextEdit;
+class QTextCharFormat;
+class QMenu;
+class QPrinter;
+QT_END_NAMESPACE
class TextEdit : public QMainWindow
{
@@ -103,20 +105,20 @@ private:
void colorChanged(const QColor &c);
void alignmentChanged(Qt::Alignment a);
- QAction *actionSave,
- *actionTextBold,
- *actionTextUnderline,
- *actionTextItalic,
- *actionTextColor,
- *actionAlignLeft,
- *actionAlignCenter,
- *actionAlignRight,
- *actionAlignJustify,
- *actionUndo,
- *actionRedo,
- *actionCut,
- *actionCopy,
- *actionPaste;
+ QAction *actionSave;
+ QAction *actionTextBold;
+ QAction *actionTextUnderline;
+ QAction *actionTextItalic;
+ QAction *actionTextColor;
+ QAction *actionAlignLeft;
+ QAction *actionAlignCenter;
+ QAction *actionAlignRight;
+ QAction *actionAlignJustify;
+ QAction *actionUndo;
+ QAction *actionRedo;
+ QAction *actionCut;
+ QAction *actionCopy;
+ QAction *actionPaste;
QComboBox *comboStyle;
QFontComboBox *comboFont;
@@ -127,4 +129,4 @@ private:
QTextEdit *textEdit;
};
-#endif
+#endif // TEXTEDIT_H