Index: sources/view/VDateTime.cpp =================================================================== diff -u -rd1a6830c486a9ee9c388a80b570aa8141a8366c9 -r22bf9e36a97ac83b68b04d803ce8f1fd163147e5 --- sources/view/VDateTime.cpp (.../VDateTime.cpp) (revision d1a6830c486a9ee9c388a80b570aa8141a8366c9) +++ sources/view/VDateTime.cpp (.../VDateTime.cpp) (revision 22bf9e36a97ac83b68b04d803ce8f1fd163147e5) @@ -58,56 +58,6 @@ } /*! - * \brief doSetHour - * Sets the hour - * \param vHour (int) - the hour - */ -void VDateTime::doSetHour(const int &vHour) -{ - hour(QStringLiteral("%1").arg(vHour, 2, 10, QLatin1Char('0'))); -} - -/*! - * \brief doSetMinute - * Sets the minute - * \param vMinute (int) - the minute - */ -void VDateTime::doSetMinute(const int &vMinute) -{ - minute(QStringLiteral("%1").arg(vMinute, 2, 10, QLatin1Char('0'))); -} - -/*! - * \brief doSetMonth - * Sets the month - * \param vMonth (int) - the month - */ -void VDateTime::doSetMonth(const int &vMonth) -{ - month(QStringLiteral("%1").arg(vMonth, 2, 10, QLatin1Char('0'))); -} - -/*! - * \brief doSetday - * Sets the day - * \param vDay (int) - the day - */ -void VDateTime::doSetDay(const int &vDay) -{ - day(QStringLiteral("%1").arg(vDay, 2, 10, QLatin1Char('0'))); -} - -/*! - * \brief doSetyear - * Sets the year - * \param vYear (int) - the year - */ -void VDateTime::doSetYear(const int &vYear) -{ - year(QStringLiteral("%1").arg(vYear, 4, 10, QLatin1Char('0'))); -} - -/*! * \brief doSave * Issues request to save the current date and time to UI, HD and DG */