-
Notifications
You must be signed in to change notification settings - Fork 92
Open
Labels
🥳🎉 1.0This issue is part of stabilization for 1.0 releaseThis issue is part of stabilization for 1.0 release🪲 bugSomething isn't workingSomething isn't working
Description
In QCoreApplication
, QGuiApplication
, and QApplication
, static methods are handled in three different ways, arbitrarily:
- No
self
parameter &self
Pin<&mut Self>
The first approach is the only correct one. The second approach has an unused parameter, but at least it doesn't do anything with it. The third approach adds pinning and mutability logic that, again, is completely unused. It's passing around and wrapping and unwrapping a mutable pointer to an object that nothing happens to.
Obviously, removing those parameters would cause breaking changes, but I think it should probably be done in time for 1.0.
Metadata
Metadata
Assignees
Labels
🥳🎉 1.0This issue is part of stabilization for 1.0 releaseThis issue is part of stabilization for 1.0 release🪲 bugSomething isn't workingSomething isn't working
Type
Projects
Status
Todo