[anjuta] libanjuta: The method is called anjuta_utils_get_drop_files...



commit 428b74713f2327efb4a2010ec35f3ed42781809f
Author: Johannes Schmid <jhs gnome org>
Date:   Tue Nov 30 11:45:27 2010 +0100

    libanjuta: The method is called anjuta_utils_get_drop_files...

 libanjuta/Makefile.am     |    3 ---
 libanjuta/anjuta-utils.c  |    4 ++--
 plugins/file-loader/dnd.c |    2 +-
 3 files changed, 3 insertions(+), 6 deletions(-)
---
diff --git a/libanjuta/Makefile.am b/libanjuta/Makefile.am
index e89beea..5f074de 100644
--- a/libanjuta/Makefile.am
+++ b/libanjuta/Makefile.am
@@ -89,8 +89,6 @@ libanjuta_3_la_SOURCES= \
 	anjuta-async-notify.c \
 	anjuta-debug.c \
 	anjuta-debug.h \
-	gbf-project.c \
-	gbf-project.h \
 	anjuta-command-queue.c \
 	anjuta-command-queue.h \
 	anjuta-token.c \
@@ -178,7 +176,6 @@ libanjuta_include = \
 	anjuta-async-notify.h \
 	anjuta-sync-command.h \
 	anjuta-version.h \
-	gbf-project.h \
 	anjuta-project.h \
 	anjuta-command-queue.h \
 	anjuta-drop-entry.h \
diff --git a/libanjuta/anjuta-utils.c b/libanjuta/anjuta-utils.c
index fd8122b..9b8dd7e 100644
--- a/libanjuta/anjuta-utils.c
+++ b/libanjuta/anjuta-utils.c
@@ -2397,7 +2397,7 @@ anjuta_util_builder_get_objects (GtkBuilder *builder, const gchar *first_widget,
 }
 
 /**
- * anjuta_util_drop_get_files:
+ * anjuta_utils_drop_get_files:
  * @selection_data: the #GtkSelectionData from drag_data_received
  * @info: the info from drag_data_received
  *
@@ -2406,7 +2406,7 @@ anjuta_util_builder_get_objects (GtkBuilder *builder, const gchar *first_widget,
  * Return value: a list of GFiles
  */
 GSList*
-anjuta_util_drop_get_files (GtkSelectionData *selection_data)
+anjuta_utils_drop_get_files (GtkSelectionData *selection_data)
 {
 	gchar **uris;
 	gint i;
diff --git a/plugins/file-loader/dnd.c b/plugins/file-loader/dnd.c
index 0e2c5d9..3a0d37f 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_util_drop_get_files (data);
+		files = anjuta_utils_drop_get_files (data);
 
 		if (files != NULL)
 		{



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]