-
-
Notifications
You must be signed in to change notification settings - Fork 114
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
Replace Q3PtrList in diagram dialog #854
Replace Q3PtrList in diagram dialog #854
Conversation
1b6f4da
to
b3deafb
Compare
Hi, can we use QList instead of std::vector for this refactoring. |
@dsm hi! Is there a specific reason for it? |
Just looking your modification and the line in diagramdialog.cpp |
Now I see what you mean I agree |
Btw I Quick test QList over std::vector some compiler error happend, I think QList wants to copy uniquie ptr somewhere I don't know where but unique ptr doesn't copyable just movable maybe we can use weak_ptr or shared_ptr instead of unique if there isn't spesific desicion. |
I am more inclined to keep the |
Merged. I didn't find issues while testing this. |
Hi!
This is another piece for #748