-
-
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.
clang-format for analysis and gui on 3.40 (#59736)
* add analysis to clang-format * handle sip macros * remove auto-generated files from spell check * [sipify] supports code in comment * comment methodcode * run pre-commit * [sipify] close type header code earlier * [sipify] better handling of type header includes * modify includes * [sipify] better handling of type header includes (multiple) * modify core includes * fix SIP_SKIP * Revert "[sipify] close type header code earlier" This reverts commit 0fe88cf945fd2da710453e2a55a4cdc4e2f82802. * [sipify] do not exit header code if commentting * fix SIP_SKIP * [sipify] exit type header code * fix typo * src code layout * sipify * comment sip directives * add gui to clang-format * place SIP_DEPRECATED before definition * run pre-commit * fix windows build * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * fix windows build take 2 * comment to fix win build * allow combination of SIP_SKIP and Q_DECLARE_FLAGS * fix SIP_SKIP and SIP_FORCE being left alone * remove multiline * [sipify] Fix staticmethod (#59517) * [sipify] Fix staticmethod When building bindings for Kadas, we get an AttributeError on startup and not a NameError. * [pre-commit.ci lite] apply automatic fixes --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com> * sipify --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
- Loading branch information
1 parent
d0e4a03
commit 9385de0
Showing
5,452 changed files
with
20,930 additions
and
33,446 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# The following has been generated automatically from src/3d/processing/qgs3dalgorithms.h | ||
try: | ||
Qgs3DAlgorithms.__group__ = ['processing'] | ||
except NameError: | ||
except (NameError, AttributeError): | ||
pass |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# The following has been generated automatically from src/3d/qgs3dtypes.h | ||
try: | ||
Qgs3DTypes.__attribute_docs__ = {'PROP_NAME_3D_RENDERER_FLAG': 'Qt property name to hold the 3D geometry renderer flag'} | ||
except NameError: | ||
except (NameError, AttributeError): | ||
pass |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# The following has been generated automatically from src/3d/lights/qgsdirectionallightsettings.h | ||
try: | ||
QgsDirectionalLightSettings.__group__ = ['lights'] | ||
except NameError: | ||
except (NameError, AttributeError): | ||
pass |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# The following has been generated automatically from src/3d/qgslayoutitem3dmap.h | ||
try: | ||
QgsLayoutItem3DMap.create = staticmethod(QgsLayoutItem3DMap.create) | ||
except NameError: | ||
except (NameError, AttributeError): | ||
pass |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# The following has been generated automatically from src/3d/materials/qgsmaterialregistry.h | ||
try: | ||
QgsMaterialSettingsAbstractMetadata.__group__ = ['materials'] | ||
except NameError: | ||
except (NameError, AttributeError): | ||
pass | ||
try: | ||
QgsMaterialRegistry.__group__ = ['materials'] | ||
except NameError: | ||
except (NameError, AttributeError): | ||
pass |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
# The following has been generated automatically from src/3d/symbols/qgspointcloud3dsymbol.h | ||
try: | ||
QgsPointCloud3DSymbol.__group__ = ['symbols'] | ||
except NameError: | ||
except (NameError, AttributeError): | ||
pass | ||
try: | ||
QgsSingleColorPointCloud3DSymbol.__group__ = ['symbols'] | ||
except NameError: | ||
except (NameError, AttributeError): | ||
pass | ||
try: | ||
QgsColorRampPointCloud3DSymbol.__group__ = ['symbols'] | ||
except NameError: | ||
except (NameError, AttributeError): | ||
pass | ||
try: | ||
QgsRgbPointCloud3DSymbol.__group__ = ['symbols'] | ||
except NameError: | ||
except (NameError, AttributeError): | ||
pass | ||
try: | ||
QgsClassificationPointCloud3DSymbol.__group__ = ['symbols'] | ||
except NameError: | ||
except (NameError, AttributeError): | ||
pass |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# The following has been generated automatically from src/3d/lights/qgspointlightsettings.h | ||
try: | ||
QgsPointLightSettings.__group__ = ['lights'] | ||
except NameError: | ||
except (NameError, AttributeError): | ||
pass |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# The following has been generated automatically from src/3d/qgsrulebased3drenderer.h | ||
try: | ||
QgsRuleBased3DRenderer.Rule.create = staticmethod(QgsRuleBased3DRenderer.Rule.create) | ||
except NameError: | ||
except (NameError, AttributeError): | ||
pass |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# The following has been generated automatically from src/3d/processing/qgs3dalgorithms.h | ||
try: | ||
Qgs3DAlgorithms.__group__ = ['processing'] | ||
except NameError: | ||
except (NameError, AttributeError): | ||
pass |
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
Oops, something went wrong.