1.1 --- a/mapcenterobj.cpp Wed Apr 25 16:02:54 2007 +0000
1.2 +++ b/mapcenterobj.cpp Wed Apr 25 16:02:54 2007 +0000
1.3 @@ -31,7 +31,7 @@
1.4 void MapCenterObj::init ()
1.5 {
1.6 BranchObj::init();
1.7 - orientation=OrientUndef;
1.8 + orientation=LinkableMapObj::UndefinedOrientation;
1.9
1.10 // TODO this should be done in TextObj later...
1.11 //QFont font ("Sans Serif,16,-1,5,50,0,0,0,0,0");
1.12 @@ -39,7 +39,7 @@
1.13 depth=0;
1.14 setDefAttr(MovedBranch);
1.15
1.16 - frame->setFrameType (Rectangle);
1.17 + frame->setFrameType (FrameObj::Rectangle);
1.18 }
1.19
1.20 void MapCenterObj::move (double x, double y)
2.1 --- a/mapcenterobj.h Wed Apr 25 16:02:54 2007 +0000
2.2 +++ b/mapcenterobj.h Wed Apr 25 16:02:54 2007 +0000
2.3 @@ -6,6 +6,8 @@
2.4
2.5 #include "branchobj.h"
2.6
2.7 +/*! \brief The center of the map is a special branch. */
2.8 +
2.9 /////////////////////////////////////////////////////////////////////////////
2.10 class MapCenterObj:public BranchObj {
2.11 public:
2.12 @@ -29,7 +31,7 @@
2.13 QString getComment ();
2.14 QString getDate();
2.15 private:
2.16 - QString version; // version string saved in vym file
2.17 + QString version; //!< version string saved in vym file
2.18 QString author;
2.19 QString comment;
2.20 QDate date;