-
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
QgsProject is a singleton #8
Comments
|
A big +1 My grep gives me ~700 calls to For core it's down to 156 and 104, so it's a lot of work but replacing the calls by either functions parameter (if only used in member function) or by an additional member passed to ctor seems the way to go IMO. It breaks the API, but it's not rocket science either, and with down->top approach it can be done step by step. Once done, the |
|
Fixed in qgis/QGIS@57ff36b |
It should be possible to use QgsProject also as a non-singleton. This would allow reading of multiple project files:
The text was updated successfully, but these errors were encountered: