Skip to content

Commit

Permalink
Correct some references to corelib/tools/ to say corelib/text/
Browse files Browse the repository at this point in the history
The Unicode data tables moved with QString and friends.
So did the locale data generated from CLDR.

This amends commit a9aa206.

Change-Id: If12f0420b559dcb78993adc00e9f39751bca684a
Reviewed-by: Volker Hilsheimer <[email protected]>
  • Loading branch information
ediosyncratic committed Oct 25, 2019
1 parent 425df43 commit 6852ba8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion util/locale_database/qlocalexml2cpp.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ def main():
qtsrcdir = sys.argv[2]

if not (os.path.isdir(qtsrcdir)
and all(os.path.isfile(os.path.join(qtsrcdir, 'src', 'corelib', 'tools', leaf))
and all(os.path.isfile(os.path.join(qtsrcdir, 'src', 'corelib', 'text', leaf))
for leaf in ('qlocale_data_p.h', 'qlocale.h', 'qlocale.qdoc'))):
usage()

Expand Down
4 changes: 2 additions & 2 deletions util/unicode/README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Unicode is used to generate the unicode data in src/corelib/tools.
Unicode is used to generate the unicode data in src/corelib/text/.

To update:
* Find the data (UAX #44, UCD; not the XML version) at
Expand All @@ -21,7 +21,7 @@ To update:
* Build with the modified code, fix any compilation issues.
* That may have updated qtbase/src/corelib/text/qunicodetables.cpp;
if so the update matters; be sure to commit the changes to data/ at
the same time and update tools/qt_attribution.json to match; use the
the same time and update text/qt_attribution.json to match; use the
UCD Revision number, rather than the Unicode standard number, as the
Version, for all that qunicodetables.cpp uses the latter.

Expand Down

0 comments on commit 6852ba8

Please sign in to comment.