# HG changeset patch # User insilmaril # Date 1177516974 0 # Node ID 9bc55005a0f1d70c03a2c7342cbfce0e354bc17d # Parent 84b37cc9e63efa72f8a0cec20d93a2e72fe2dbc1 started doxygen documentation diff -r 84b37cc9e63e -r 9bc55005a0f1 mapcenterobj.cpp --- a/mapcenterobj.cpp Wed Apr 25 16:02:54 2007 +0000 +++ b/mapcenterobj.cpp Wed Apr 25 16:02:54 2007 +0000 @@ -31,7 +31,7 @@ void MapCenterObj::init () { BranchObj::init(); - orientation=OrientUndef; + orientation=LinkableMapObj::UndefinedOrientation; // TODO this should be done in TextObj later... //QFont font ("Sans Serif,16,-1,5,50,0,0,0,0,0"); @@ -39,7 +39,7 @@ depth=0; setDefAttr(MovedBranch); - frame->setFrameType (Rectangle); + frame->setFrameType (FrameObj::Rectangle); } void MapCenterObj::move (double x, double y) diff -r 84b37cc9e63e -r 9bc55005a0f1 mapcenterobj.h --- a/mapcenterobj.h Wed Apr 25 16:02:54 2007 +0000 +++ b/mapcenterobj.h Wed Apr 25 16:02:54 2007 +0000 @@ -6,6 +6,8 @@ #include "branchobj.h" +/*! \brief The center of the map is a special branch. */ + ///////////////////////////////////////////////////////////////////////////// class MapCenterObj:public BranchObj { public: @@ -29,7 +31,7 @@ QString getComment (); QString getDate(); private: - QString version; // version string saved in vym file + QString version; //!< version string saved in vym file QString author; QString comment; QDate date;