Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use _unref instead of _free _destroy when possible.unref | Xavier Claessens | 2011-11-16 | 1 | -1/+1 |
| | | | | | | | | | | | Replace g_(ptr_)array_free (foo, TRUE) and g_hash_table_destroy with respectively g_(ptr_)array_unref (foo) and g_hash_table_unref. I used this command to generate this patch: for f in `find -name "*.c"`; do sed -i $f -re 's/g_ptr_array_free \(([^ ,]+), TRUE\)/g_ptr_array_unref \(\1\)/'; done See Danielle's blog for explanation of possible bug _free can do: http://blogs.gnome.org/danni/2011/11/16/mistakes-with-g_value_set_boxed/ | ||||
* | Use tp_proxy_prepare_async instead of tp_account_manager_prepare_async | Guillaume Desmottes | 2011-09-19 | 1 | -2/+2 |
| | |||||
* | notify-manager: cache the notification GSettings | Guillaume Desmottes | 2010-11-29 | 1 | -15/+12 |
| | |||||
* | empathy_notify_manager_notification_is_enabled: properly check the ↵ | Guillaume Desmottes | 2010-10-18 | 1 | -1/+1 |
| | | | | | | | EMPATHY_PREFS_NOTIFICATIONS_DISABLED_AWAY preference If this key is set, that means we do NOT want the notification when being away/busy. | ||||
* | Port Empathy code to GSettings, remove EmpathyConf | Danielle Madeley | 2010-06-18 | 1 | -17/+17 |
| | |||||
* | notify-manager: unref the account mgr when disposing | Guillaume Desmottes | 2009-11-19 | 1 | -0/+15 |
| | |||||
* | notify-manager: use the account mgr directly instead of ↵ | Guillaume Desmottes | 2009-11-19 | 1 | -1/+39 |
| | | | | empathy_check_available_state | ||||
* | change 'capa' to 'cap' | Guillaume Desmottes | 2009-11-13 | 1 | -5/+5 |
| | |||||
* | empathy_notify_manager_init: no need to cast the return value of g_object_new | Guillaume Desmottes | 2009-11-13 | 1 | -2/+1 |
| | |||||
* | remove notify_manager_dispose as it doesn't do anything | Guillaume Desmottes | 2009-11-13 | 1 | -16/+0 |
| | |||||
* | notify-manager: fetch capabilities in _init instead of _constructor | Guillaume Desmottes | 2009-11-13 | 1 | -16/+13 |
| | |||||
* | change empathy_notification_is_enabled to ↵ | Guillaume Desmottes | 2009-11-13 | 1 | -1/+1 |
| | | | | | | | empathy_notify_manager_notification_is_enabled Making it a method of EmpathyNotifyManager would allow us to cache the gconf values if we want to. | ||||
* | change empathy_misc_get_pixbuf_for_notification to ↵ | Guillaume Desmottes | 2009-11-13 | 1 | -1/+2 |
| | | | | | | | | empathy_notify_manager_get_pixbuf_for_notification Making this function a method of EmpathyNotifyManager would allow us to tweak the size of the icon depending on the notifications server as suggested in bug 588054. | ||||
* | move empathy-misc to empathy-notify-manager | Guillaume Desmottes | 2009-11-13 | 1 | -0/+44 |
| | | | | All its code was related to notifications. | ||||
* | add empathy_notify_manager_has_capability | Guillaume Desmottes | 2009-11-13 | 1 | -0/+9 |
| | |||||
* | notify-manager: fetch capabilities of the notification server | Guillaume Desmottes | 2009-11-13 | 1 | -1/+23 |
| | |||||
* | add stub EmpathyNotifyManager (#601691) | Guillaume Desmottes | 2009-11-13 | 1 | -0/+112 |