summaryrefslogtreecommitdiff
path: root/gio/src/fileenumerator.ccg
diff options
context:
space:
mode:
Diffstat (limited to 'gio/src/fileenumerator.ccg')
-rw-r--r--gio/src/fileenumerator.ccg8
1 files changed, 4 insertions, 4 deletions
diff --git a/gio/src/fileenumerator.ccg b/gio/src/fileenumerator.ccg
index 58830c0c..18e3be7b 100644
--- a/gio/src/fileenumerator.ccg
+++ b/gio/src/fileenumerator.ccg
@@ -33,7 +33,7 @@ FileEnumerator::next_files_async(const SlotAsyncReady& slot,
auto slot_copy = new SlotAsyncReady(slot);
g_file_enumerator_next_files_async(gobj(), num_files, io_priority, Glib::unwrap(cancellable),
- &SignalProxy_async_callback, slot_copy);
+ &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -46,7 +46,7 @@ FileEnumerator::next_files_async(const SlotAsyncReady& slot, int num_files, int
g_file_enumerator_next_files_async(gobj(), num_files, io_priority,
nullptr, // cancellable
- &SignalProxy_async_callback, slot_copy);
+ &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -59,7 +59,7 @@ FileEnumerator::close_async(
auto slot_copy = new SlotAsyncReady(slot);
g_file_enumerator_close_async(
- gobj(), io_priority, Glib::unwrap(cancellable), &SignalProxy_async_callback, slot_copy);
+ gobj(), io_priority, Glib::unwrap(cancellable), &giomm_SignalProxy_async_callback, slot_copy);
}
void
@@ -72,7 +72,7 @@ FileEnumerator::close_async(int io_priority, const SlotAsyncReady& slot)
g_file_enumerator_close_async(gobj(), io_priority,
nullptr, // cancellable
- &SignalProxy_async_callback, slot_copy);
+ &giomm_SignalProxy_async_callback, slot_copy);
}
} // namespace Gio