[Kstars-devel] KDE/kdeedu/kstars/kstars
Akarsh Simha
akarshsimha at gmail.com
Thu Jan 15 15:25:47 CET 2009
SVN commit 911525 by asimha:
Fix bug that spoiled fov.dat
Had forgotten to write in the ':' between entries, so FOV diameters
would grow with every write.
CCMAIL: kstars-devel at kde.org
M +2 -2 kstarsactions.cpp
--- trunk/KDE/kdeedu/kstars/kstars/kstarsactions.cpp #911524:911525
@@ -961,8 +961,8 @@
QTextStream ostream(&f);
foreach ( FOV *fov, fovdlg.FOVList )
- ostream << fov->name() << ":" << fov->sizeX() << fov->sizeY()
- << ":" << QString::number( fov->shape() )
+ ostream << fov->name() << ":" << fov->sizeX() << ":"
+ << fov->sizeY() << ":" << QString::number( fov->shape() )
<< ":" << fov->color() << endl;
f.close();
More information about the Kstars-devel
mailing list