hi,everyone
when I use the class QwtLogScaleEngine,I have a question.
Following is the code:
Qt Code:
  1. QwtScaleDiv div(1,1000);
  2. QwtLogScaleEngine *logSE = new QwtLogScaleEngine();
  3. div = logSE->divideScale(1,1000,5,5);
  4. qDebug() << "log major ticks" << div.ticks(QwtScaleDiv::MajorTick);
  5. qDebug() << "log medium ticks" << div.ticks(QwtScaleDiv::MediumTick);
  6. qDebug() << "log minor ticks" << div.ticks(QwtScaleDiv::MinorTick);
To copy to clipboard, switch view to plain text mode 

the debug message is following:
log1 major ticks (1, 10, 100, 1000)
log1 medium ticks ()
log1 minor ticks (4, 6, 8, 40, 60, 80, 400, 600, 800)

My question is that why the minor ticks don't contain the 2,20,200 ?I can't understad it.I have search the source code of class QwtLogScaleEngine,but I can't understand it clearly.
Thanks in advance!!