Bumped copyright dates for 2013
[barry.git] / desktop / src / guitimet.cc
blob508264628e7f401fcff0933b535140d726d630a2
1 ///
2 /// \file guitimet.cc
3 /// Object to hold the date/time data of a set of GUI controls
4 ///
6 /*
7 Copyright (C) 2012-2013, Net Direct Inc. (http://www.netdirect.ca/)
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU General Public License in the COPYING file at the
19 root directory of this project for more details.
22 #include <wx/wx.h>
23 #include "guitimet.h"
25 void GUITimeT::Set(time_t t)
27 m_date.Set(t);
28 m_hour = m_date.GetHour();
29 m_min = m_date.GetMinute();
32 time_t GUITimeT::Get() const
34 wxDateTime tmp = m_date.GetDateOnly();
35 tmp.SetHour(m_hour);
36 tmp.SetMinute(m_min);
37 return tmp.GetTicks();