Index: sources/gui/qml/components/Footer.qml =================================================================== diff -u -r8a5dbf556a66524fbe4b60ac1573182a0bd27617 -r903697f659a275a5be31d05c460dae628f532aab --- sources/gui/qml/components/Footer.qml (.../Footer.qml) (revision 8a5dbf556a66524fbe4b60ac1573182a0bd27617) +++ sources/gui/qml/components/Footer.qml (.../Footer.qml) (revision 903697f659a275a5be31d05c460dae628f532aab) @@ -21,7 +21,11 @@ import "qrc:/globals" /*! - * \brief Denali project Footer section which gives all the children same width with same spacing, aligned in center + * \brief Denali project Footer section which gives all the children same width with same spacing, aligned in center. + * \details It's been created because the row layout is always keeping it's children aligned at left and not at center. + * This mainly being used to keep buttons on a screen alinged with the same width and space between them and horisontalley centered + * on the bottom of the screen (footer), + * and with enough bottom marging to give room to the alarm bar. */ Row { id: _root property int childrenWidth : _root.width / (childrenCount * 2 + 1 ) Index: sources/storage/Logger.cpp =================================================================== diff -u -r6816b783f50e08267aa016d64350bc020080d901 -r903697f659a275a5be31d05c460dae628f532aab --- sources/storage/Logger.cpp (.../Logger.cpp) (revision 6816b783f50e08267aa016d64350bc020080d901) +++ sources/storage/Logger.cpp (.../Logger.cpp) (revision 903697f659a275a5be31d05c460dae628f532aab) @@ -480,9 +480,16 @@ LOG_DEBUG("Console out Logging disabled"); } } +// coco end +/*! + * \brief Logger::logPath + * \details The accessor of the log path for each log type. + * \param vLogType - type of the log + * \return the log path of the log type vLogType as string + * \sa Logger::LogType + */ const QString &Logger::logPath(Logger::LogType vLogType) { return _logPathNames[vLogType]; } -// coco end Index: sources/storage/Logger.h =================================================================== diff -u -r6816b783f50e08267aa016d64350bc020080d901 -r903697f659a275a5be31d05c460dae628f532aab --- sources/storage/Logger.h (.../Logger.h) (revision 6816b783f50e08267aa016d64350bc020080d901) +++ sources/storage/Logger.h (.../Logger.h) (revision 903697f659a275a5be31d05c460dae628f532aab) @@ -95,7 +95,7 @@ const char *_headerE = "TimeStamp,Type,SubSys,Name,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40\r\n"; QDir _dir; QString _logFileNamePrefix; - QHash _logPathNames; + QHash _logPathNames; const QHash _logBasePathNames { { LogType::eLogEvent, "log/" }, { LogType::eLogDatum, "log/" },