Changeset - 6049d6835508
[Not reviewed]
show-symbols
0 1 0
Hasan Yavuz Ă–ZDERYA - 9 years ago 2016-08-30 10:02:00
hy@ozderya.net
fix signed/unsigned comparison warning
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/plot.cpp
Show inline comments
 
@@ -247,7 +247,7 @@ void Plot::updateSymbols()
 

	
 
    if (curves.size() > 0)
 
    {
 
        for (unsigned i = 0; i < curves.size(); i++)
 
        for (int i = 0; i < curves.size(); i++)
 
        {
 
            QwtSymbol* symbol = NULL;
 
            QwtPlotCurve* curve = static_cast<QwtPlotCurve*>(curves[i]);
0 comments (0 inline, 0 general)