[anjuta] libanjuta: renamed anjuta_utils_drop_get_files -> anjuta_util_drop_get_files
- From: Massimo Cora' <mcora src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [anjuta] libanjuta: renamed anjuta_utils_drop_get_files -> anjuta_util_drop_get_files
- Date: Mon, 16 Aug 2010 17:12:28 +0000 (UTC)
commit c5686e01c605a7024f30e558a0cfe394a3ada7af
Author: Massimo Corà <mcora src gnome org>
Date: Mon Aug 16 19:10:35 2010 +0200
libanjuta: renamed anjuta_utils_drop_get_files -> anjuta_util_drop_get_files
libanjuta/anjuta-utils.c | 4 ++--
libanjuta/anjuta-utils.h | 2 +-
plugins/file-loader/dnd.c | 2 +-
plugins/sourceview/anjuta-view.c | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/libanjuta/anjuta-utils.c b/libanjuta/anjuta-utils.c
index f471568..8a7067b 100644
--- a/libanjuta/anjuta-utils.c
+++ b/libanjuta/anjuta-utils.c
@@ -2398,7 +2398,7 @@ anjuta_util_builder_get_objects (GtkBuilder *builder, const gchar *first_widget,
}
/**
- * anjuta_utils_drop_get_files:
+ * anjuta_util_drop_get_files:
* @selection_data: the #GtkSelectionData from drag_data_received
* @info: the info from drag_data_received
*
@@ -2407,7 +2407,7 @@ anjuta_util_builder_get_objects (GtkBuilder *builder, const gchar *first_widget,
* Return value: a list of GFiles
*/
GSList*
-anjuta_utils_drop_get_files (GtkSelectionData *selection_data)
+anjuta_util_drop_get_files (GtkSelectionData *selection_data)
{
gchar **uris;
gint i;
diff --git a/libanjuta/anjuta-utils.h b/libanjuta/anjuta-utils.h
index b091494..5e24d57 100644
--- a/libanjuta/anjuta-utils.h
+++ b/libanjuta/anjuta-utils.h
@@ -148,7 +148,7 @@ GtkBuilder *anjuta_util_builder_new (const gchar *filename, GError **error);
gboolean anjuta_util_builder_get_objects (GtkBuilder *builder, const gchar *first_widget,...);
/* Helper for drag and drop */
-GSList *anjuta_utils_drop_get_files (GtkSelectionData *selection_data);
+GSList *anjuta_util_drop_get_files (GtkSelectionData *selection_data);
/* Temporarily copied here */
diff --git a/plugins/file-loader/dnd.c b/plugins/file-loader/dnd.c
index 3a0d37f..0e2c5d9 100644
--- a/plugins/file-loader/dnd.c
+++ b/plugins/file-loader/dnd.c
@@ -79,7 +79,7 @@ drag_data_received_cb (GtkWidget *widget, GdkDragContext *context,
/* If this is an URL emit DROP_URIS, otherwise chain up the signal */
if (info == TARGET_URI_LIST)
{
- files = anjuta_utils_drop_get_files (data);
+ files = anjuta_util_drop_get_files (data);
if (files != NULL)
{
diff --git a/plugins/sourceview/anjuta-view.c b/plugins/sourceview/anjuta-view.c
index edf2759..5b44da6 100644
--- a/plugins/sourceview/anjuta-view.c
+++ b/plugins/sourceview/anjuta-view.c
@@ -219,7 +219,7 @@ anjuta_view_drag_data_received (GtkWidget *widget,
/* If this is an URL emit DROP_URIS, otherwise chain up the signal */
if (info == TARGET_URI_LIST)
{
- files = anjuta_utils_drop_get_files (selection_data);
+ files = anjuta_util_drop_get_files (selection_data);
if (files != NULL)
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]