-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow free naming of project properties
Allows: <properties name="properties"> <properties name="1"> <properties name="2" type="QString">foo</properties> </properties> </properties> Data-driven properties names could violate that monstrous regular expression earlier (eg. using layer ids with leading digits as key was illegal) and trigger "Entry token invalid" for no too obvious reason (even when trying to remove a non-existing entry). Turns <properties> <foo> <bar type="QString">baz</bar> </foo> </properties> into <properties name="properties"> <properties name="foo"> <properties name="bar" type="QString">baz</properties> </properties> </properties>
- Loading branch information
Showing
3 changed files
with
57 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters