aboutsummaryrefslogtreecommitdiff
path: root/src/menu.cpp
Commit message (Collapse)AuthorAgeFilesLines
* copyediting: use 'nullptr' instead of 'NULL' in c++ sourceCharles Kerr2014-02-021-1/+1
|
* copyediting: as per review, use name_of_thing() instead of ↵Charles Kerr2014-01-301-7/+7
| | | | get_name_of_thing() or getNameOfThing()
* following on the review comment covered in the last commit, use ↵Charles Kerr2014-01-301-12/+12
| | | | shared_ptr<const X> instead of shared_ptr<X> where possible.
* as per review, there were a few places that accidentally passed a ↵Charles Kerr2014-01-301-2/+2
| | | | shared_ptr<X>& instead of a const shared_ptr<X>&
* as per review, constify getters where possible. This isn't always possible ↵Charles Kerr2014-01-301-5/+0
| | | | due to system APIs asking for non-const pointers.
* as per review, don't inline unless there are performance issuesCharles Kerr2014-01-301-0/+6
|
* as per review, don't inline gettersCharles Kerr2014-01-301-0/+26
|
* fix 'clock app' menuitem on phone profile reported by seb128 and update the ↵Charles Kerr2014-01-301-4/+13
| | | | corresponding unit tests
* fix disabled 'Add Event…' menuitem issue reported in testing by seb128; ↵Charles Kerr2014-01-291-1/+1
| | | | add a test for this regression
* fix instant calendar toggle issue reported in testing by seb128; add a test ↵Charles Kerr2014-01-291-2/+5
| | | | for this regression
* sync with lp:~larsu/indicator-datetime/reset-date and add corresponding unit ↵Charles Kerr2014-01-291-0/+2
| | | | tests.
* silence compiler warningCharles Kerr2014-01-281-1/+1
|
* follow-up to r326, if we can't get the alarm icon from click, use a sane ↵Charles Kerr2014-01-221-2/+9
| | | | fallback icon
* copyediting: omit unnecessary #includesCharles Kerr2014-01-221-4/+0
|
* the clock icon should match the one used by the clock app, so use click to ↵Charles Kerr2014-01-221-8/+54
| | | | ask the clock app which icon it's using
* plug in the greeter menusCharles Kerr2014-01-221-2/+2
|
* Plug the Settings object into the State container s.t. menus and actions can ↵Charles Kerr2014-01-161-15/+5
| | | | update themselves when the user's settings change.
* Function: add fully-tested ActionGroups, per-profile Menus, state object.Charles Kerr2014-01-141-0/+518
Form: Add code annotations/comments. Remove dead code. Use Mir style guide. Todo: GSettings toggles, sync with new dbus-test-runner API, get GNOME Panel building again