Summary: | conditional expression is constant warnings in XYFitCurveDock | ||
---|---|---|---|
Product: | [Applications] LabPlot2 | Reporter: | uwestoehr <uwestoehr> |
Component: | frontend | Assignee: | Alexander Semke <alexander.semke> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Microsoft Windows | ||
OS: | Microsoft Windows | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
uwestoehr
2017-11-21 22:44:04 UTC
We use unicode in the source files. You'll need to switch from the code page 1252 to unicode on your side. Other warning (conversion from uint to int and the hiding of 'data') will be addressed. > You'll need to switch from the code page 1252 to unicode on your side. The MSVC project uses Unicode. The problem is that one needs to use a wide char according to https://msdn.microsoft.com/de-de/library/5zkb5h07.aspx Despite the Unicode warnings, I get this: 1>C:\CraftRoot\labplot\src\kdefrontend\dockwidgets\XYFitCurveDock.cpp(220): warning C4365: 'initializing': conversion from 'int' to 'unsigned int', signed/unsigned mismatch 1>C:\CraftRoot\labplot\src\kdefrontend\dockwidgets\XYFitCurveDock.cpp(225): warning C4365: '=': conversion from 'unsigned int' to 'int', signed/unsigned mismatch 1>C:\CraftRoot\labplot\src\kdefrontend\dockwidgets\XYFitCurveDock.cpp(514): warning C4365: '=': conversion from 'unsigned int' to 'int', signed/unsigned mismatch This bug was fixed today. |