aboutsummaryrefslogtreecommitdiff
path: root/src/service.h
Commit message (Collapse)AuthorAgeFilesLines
* refactor the timezone and current time provider into a gobject Interface ↵Charles Kerr2013-10-171-3/+7
| | | | 'IndicatorDatetimeClock'
* move planner instantiation to main.c so that we can prepare to pass in a ↵Charles Kerr2013-10-091-1/+6
| | | | mock planner for testing
* remove the --replace command-line argument and property as we're using ↵Charles Kerr2013-06-201-1/+1
| | | | upstart for that
* make indicator_datetime_service_set_calendar_date() public. This is another ↵Charles Kerr2013-06-171-0/+4
| | | | one we'll need for unit tests
* in service.c, replace all calls to time(NULL) and ↵Charles Kerr2013-06-171-0/+2
| | | | g_date_time_new_now_local() with a call to the new 'indicator_datetime_service_get_localtime()' func. This is currently a passthrough to _new_now_local(), but we'll need this control point to override the system time in unit testing
* land the service implementationCharles Kerr2013-06-141-3/+1
|
* add a service boilerplate similar to the one in indicator-session. This ↵Charles Kerr2013-05-141-0/+71
doesn't do anything yet; the sections will be added in subsequent commits