-
Notifications
You must be signed in to change notification settings - Fork 215
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
Fix CMake and various warnings after merging #682 #694
Conversation
I understood now what it should do. It checks the index limits. There should be an assignment. |
@ra3xdh, I think you got the wrong person. |
Hey no problem. |
My fault. I didn't catch these issues. |
@gildias and me detected some more warnings:
Working on that |
This is a fix for the warnings arising at graph.cpp and diagramdialog.cpp In the case of the phasor diagrams, the graphs to be displayed are added using Var2 instead of using the ChooseVars table. This means that it is not necessary to pass a QTableWidgetItem object to 'slotTakeVar()' as the graph selection is already managed there
See ra3xdh#28 |
Some warnings remained after merging Qucs#415. In this commit, two unused variables are removed at qw_coupled_ring_filter.cpp. Moreover, the substrate parameters for the capacitively coupled shunt resonators are removed since there's no microstrip synthesis available
See ra3xdh#29 too |
Fix for the warnings at graph.cpp and diagramdialog.cpp
…eatures Fix warnings recently added features
@andresmmera , I have just merged your PRs. Yes, warnings in |
I reviewed and tested this PR and I found no more issues so I believe it is ready to merge |
This PR solves the following issues after merging #682:
diagrams/CMakeLists.txt
diagramdialog.cpp
onQComboBox::inserItem()
. Replased byQComboBox::addItem()
.i
indiagramdialog.cpp
. This variable was indeed unused.There remains an unfixed warning in
marker.cpp
Line 388. It contains the following code:I didn't understand what this code should do. It seems, the comparison
==
should be replaced by assignment=
. The current line does nothing, but all works as expected. @gildias, Could you please clarify, what exactly did you mean?