-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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 MSVC/MinGW compiler warnings #5291
Conversation
7b5b11a
to
fbf626c
Compare
fbf626c
to
4ffcd72
Compare
d817508
to
3d15b0f
Compare
mscore/palette/palettetree.cpp
Outdated
@@ -270,34 +270,34 @@ bool PalettePanel::read(XmlReader& e) | |||
_name = e.attribute("name"); | |||
_type = Type::Unknown; | |||
while (e.readNextStartElement()) { | |||
const QStringRef t(e.name()); | |||
if (t == "gridWidth") | |||
const QStringRef s(e.name()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably same as above, if we need to rename this variable
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But naming it tag
gives another warning, C4458 in MSVC
e73b251
to
adfb2ca
Compare
Adding fixes for a couple more (read: new) warnings, adding a missingg accessibility string. |
and also fix a compiler warning fixed earlier in a different (and better) way, see musescore#4963
and a few new warnings just cropped up :-( |
fix MSVC/MinGW compiler warnings
No description provided.