Searched refs:where_the_object_was (Results 1 - 3 of 3) sorted by relevance
/inkscape/src/ui/widget/ |
H A D | unit-tracker.h | 56 static void _actionFinalizedCB(gpointer data, GObject *where_the_object_was); 57 static void _adjustmentFinalizedCB(gpointer data, GObject *where_the_object_was); 60 void _actionFinalized(GObject *where_the_object_was); 61 void _adjustmentFinalized(GObject *where_the_object_was);
|
H A D | unit-tracker.cpp | 165 void UnitTracker::_actionFinalizedCB(gpointer data, GObject *where_the_object_was) argument 167 if (data && where_the_object_was) { 169 self->_actionFinalized(where_the_object_was); 173 void UnitTracker::_adjustmentFinalizedCB(gpointer data, GObject *where_the_object_was) argument 175 if (data && where_the_object_was) { 177 self->_adjustmentFinalized(where_the_object_was); 181 void UnitTracker::_actionFinalized(GObject *where_the_object_was) argument 183 GSList *target = g_slist_find(_actionList, where_the_object_was); 185 _actionList = g_slist_remove(_actionList, where_the_object_was); 187 g_warning("Received a finalization callback for unknown object %p", where_the_object_was); 191 _adjustmentFinalized(GObject *where_the_object_was) argument [all...] |
/inkscape/src/ |
H A D | ege-color-prof-tracker.cpp | 132 static void target_finalized( gpointer data, GObject* where_the_object_was ); 133 static void window_finalized( gpointer data, GObject* where_the_object_was ); 386 void target_finalized( gpointer data, GObject* where_the_object_was ) 394 if ( (void*)(((EgeColorProfTracker*)(trackHook->data))->private_data->_target) == (void*)where_the_object_was ) { 408 void window_finalized( gpointer data, GObject* where_the_object_was ) 411 (void)where_the_object_was; 412 /* g_message("Window at %p is now going away", where_the_object_was); */
|
Completed in 12 milliseconds