brasero r1456 - in trunk: . src
- From: philippr svn gnome org
- To: svn-commits-list gnome org
- Subject: brasero r1456 - in trunk: . src
- Date: Sun, 2 Nov 2008 13:40:44 +0000 (UTC)
Author: philippr
Date: Sun Nov 2 13:40:44 2008
New Revision: 1456
URL: http://svn.gnome.org/viewvc/brasero?rev=1456&view=rev
Log:
Silence a warning
* src/burn-basics.c:
* src/burn-caps.c (brasero_caps_list_dump):
Modified:
trunk/ChangeLog
trunk/src/burn-basics.c
trunk/src/burn-caps.c
Modified: trunk/src/burn-basics.c
==============================================================================
--- trunk/src/burn-basics.c (original)
+++ trunk/src/burn-basics.c Sun Nov 2 13:40:44 2008
@@ -46,6 +46,12 @@
static BraseroPluginManager *plugin_manager = NULL;
static BraseroMediumMonitor *medium_manager = NULL;
+/**
+ * This is defined in burn-caps.c it's for debugging mainly
+ */
+
+void brasero_caps_list_dump (void);
+
GQuark
brasero_burn_quark (void)
{
Modified: trunk/src/burn-caps.c
==============================================================================
--- trunk/src/burn-caps.c (original)
+++ trunk/src/burn-caps.c Sun Nov 2 13:40:44 2008
@@ -217,24 +217,6 @@
* and the flags that can be used (supported).
*/
-void
-brasero_caps_list_dump (void)
-{
- GSList *iter;
- BraseroBurnCaps *self;
-
- self = brasero_burn_caps_get_default ();
- for (iter = self->priv->caps_list; iter; iter = iter->next) {
- BraseroCaps *caps;
-
- caps = iter->data;
- BRASERO_BURN_LOG_WITH_TYPE (&caps->type,
- caps->flags,
- "Created %i links pointing to",
- g_slist_length (caps->links));
- }
-}
-
static gboolean
brasero_caps_is_compatible_type (const BraseroCaps *caps,
const BraseroTrackType *type)
@@ -3658,7 +3640,8 @@
}
/**
- * This is to find out what are the capacities of a plugin
+ * This is to find out what are the capacities of a plugin
+ * Declared in brasero-plugin-private.h
*/
BraseroBurnResult
@@ -3804,3 +3787,27 @@
return FALSE;
}
+
+/**
+ * This is declared in burn-basics.c. It's private stuff that needs to be
+ * defined in this file. For debugging use only.
+ */
+
+void
+brasero_caps_list_dump (void)
+{
+ GSList *iter;
+ BraseroBurnCaps *self;
+
+ self = brasero_burn_caps_get_default ();
+ for (iter = self->priv->caps_list; iter; iter = iter->next) {
+ BraseroCaps *caps;
+
+ caps = iter->data;
+ BRASERO_BURN_LOG_WITH_TYPE (&caps->type,
+ caps->flags,
+ "Created %i links pointing to",
+ g_slist_length (caps->links));
+ }
+}
+
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]