Home
last modified time | relevance | path

Searched refs:pNotificationRecordList (Results 1 – 2 of 2) sorted by relevance

/dports/deskutils/cairo-dock/cairo-dock-core-3.4.1/src/gldit/
H A Dcairo-dock-object.c94 GSList *pNotificationRecordList = g_ptr_array_index (pNotificationsTab, i); in gldi_object_unref() local
95 g_slist_foreach (pNotificationRecordList, (GFunc)g_free, NULL); in gldi_object_unref()
96 g_slist_free (pNotificationRecordList); in gldi_object_unref()
169 GSList *pNotificationRecordList = g_ptr_array_index (pNotificationsTab, iNotifType); in gldi_object_register_notification() local
170 …ta[iNotifType] = (bRunFirst ? g_slist_prepend : g_slist_append) (pNotificationRecordList, pNotific… in gldi_object_register_notification()
181 GSList *pNotificationRecordList = g_ptr_array_index (pNotificationsTab, iNotifType); in gldi_object_remove_notification() local
184 for (nr = pNotificationRecordList; nr != NULL; nr = nr->next) in gldi_object_remove_notification()
189 pNotificationsTab->pdata[iNotifType] = g_slist_delete_link (pNotificationRecordList, nr); in gldi_object_remove_notification()
H A Dcairo-dock-object.h160 #define __notify(pNotificationRecordList, bStop, ...) do {\ argument
162 GSList *pElement = pNotificationRecordList, *pNextElement;\
175 GSList *pNotificationRecordList = g_ptr_array_index (pNotificationsTab, iNotifType);\
176 __notify (pNotificationRecordList, _stop, ##__VA_ARGS__);} \