summaryrefslogtreecommitdiffstats
path: root/examples/corelib/serialization/convert/convert.pro
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2023-08-29 19:10:48 +0200
committerEdward Welbourne <edward.welbourne@qt.io>2023-09-08 18:17:37 +0200
commiteaebb5c4d2e2a87b23d63c5406bf54458b4c4a24 (patch)
tree8f111de5e8abaa00438a27261007c766c53871af /examples/corelib/serialization/convert/convert.pro
parentd8517fb1ab83e7051b1d2c2152014e7ff1760426 (diff)
Separate streaming dumper and converter in the convert example
The two were in the same files but mostly unrelated to one another - aside from the converter defaulting to the dumper for output. Furthermore, the dumper actually uses QDebug and QTextStream, not QDataStream; rename it to reflect this reality. Pick-to: 6.6 6.5 Task-number: QTBUG-111228 Change-Id: Id65c120c319b555039f7fd186ed262f35ff5260a Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io>
Diffstat (limited to 'examples/corelib/serialization/convert/convert.pro')
-rw-r--r--examples/corelib/serialization/convert/convert.pro14
1 files changed, 8 insertions, 6 deletions
diff --git a/examples/corelib/serialization/convert/convert.pro b/examples/corelib/serialization/convert/convert.pro
index 4c6b0b557a..5f4d8c203e 100644
--- a/examples/corelib/serialization/convert/convert.pro
+++ b/examples/corelib/serialization/convert/convert.pro
@@ -12,17 +12,19 @@ INSTALLS += target
SOURCES += main.cpp \
cborconverter.cpp \
- jsonconverter.cpp \
datastreamconverter.cpp \
+ debugtextdumper.cpp \
+ jsonconverter.cpp \
+ nullconverter.cpp \
textconverter.cpp \
- xmlconverter.cpp \
- nullconverter.cpp
+ xmlconverter.cpp
HEADERS += \
converter.h \
cborconverter.h \
- jsonconverter.h \
datastreamconverter.h \
+ debugtextdumper.h \
+ jsonconverter.h \
+ nullconverter.h \
textconverter.h \
- xmlconverter.h \
- nullconverter.h
+ xmlconverter.h