[brasero] Remove several function declarations that were public whereas they should be private



commit 35aa59001ba3b0e8ebe5a4027165a41e2df28821
Author: Philippe Rouquier <bonfire-app wanadoo fr>
Date:   Sat Aug 8 15:23:48 2009 +0200

    Remove several function declarations that were public whereas they should be private

 libbrasero-burn/brasero-session-helper.h |   41 ++++++++++++++++++++++++++++++
 libbrasero-burn/brasero-session-span.c   |    1 +
 libbrasero-burn/brasero-session.h        |   41 ------------------------------
 libbrasero-burn/burn-task-ctx.c          |    1 +
 4 files changed, 43 insertions(+), 41 deletions(-)
---
diff --git a/libbrasero-burn/brasero-session-helper.h b/libbrasero-burn/brasero-session-helper.h
index 7189d70..bfa76fc 100644
--- a/libbrasero-burn/brasero-session-helper.h
+++ b/libbrasero-burn/brasero-session-helper.h
@@ -96,6 +96,47 @@ BraseroBurnResult
 brasero_burn_session_get_tmp_image_type_same_src_dest (BraseroBurnSession *session,
                                                        BraseroTrackType *image_type);
 
+/**
+ * This is to log a session
+ * (used internally)
+ */
+
+const gchar *
+brasero_burn_session_get_log_path (BraseroBurnSession *session);
+
+void
+brasero_burn_session_set_log_path (BraseroBurnSession *session,
+				   const gchar *session_path);
+gboolean
+brasero_burn_session_start (BraseroBurnSession *session);
+
+void
+brasero_burn_session_stop (BraseroBurnSession *session);
+
+void
+brasero_burn_session_logv (BraseroBurnSession *session,
+			   const gchar *format,
+			   va_list arg_list);
+void
+brasero_burn_session_log (BraseroBurnSession *session,
+			  const gchar *format,
+			  ...);
+
+/**
+ * Allow to save a whole session settings/source and restore it later.
+ * (used internally)
+ */
+
+void
+brasero_burn_session_push_settings (BraseroBurnSession *session);
+void
+brasero_burn_session_pop_settings (BraseroBurnSession *session);
+
+void
+brasero_burn_session_push_tracks (BraseroBurnSession *session);
+BraseroBurnResult
+brasero_burn_session_pop_tracks (BraseroBurnSession *session);
+
 G_END_DECLS
 
 #endif
diff --git a/libbrasero-burn/brasero-session-span.c b/libbrasero-burn/brasero-session-span.c
index 5128bc2..6c35d95 100644
--- a/libbrasero-burn/brasero-session-span.c
+++ b/libbrasero-burn/brasero-session-span.c
@@ -36,6 +36,7 @@
 #include "brasero-medium.h"
 
 #include "burn-debug.h"
+#include "brasero-session-helper.h"
 #include "brasero-track.h"
 #include "brasero-track-data.h"
 #include "brasero-track-data-cfg.h"
diff --git a/libbrasero-burn/brasero-session.h b/libbrasero-burn/brasero-session.h
index 7a4e98e..89e1de0 100644
--- a/libbrasero-burn/brasero-session.h
+++ b/libbrasero-burn/brasero-session.h
@@ -257,47 +257,6 @@ brasero_burn_session_get_possible_output_formats (BraseroBurnSession *session,
 BraseroImageFormat
 brasero_burn_session_get_default_output_format (BraseroBurnSession *session);
 
-/**
- * This is to log a session
- * (used internally)
- */
-
-const gchar *
-brasero_burn_session_get_log_path (BraseroBurnSession *session);
-
-void
-brasero_burn_session_set_log_path (BraseroBurnSession *session,
-				   const gchar *session_path);
-gboolean
-brasero_burn_session_start (BraseroBurnSession *session);
-
-void
-brasero_burn_session_stop (BraseroBurnSession *session);
-
-void
-brasero_burn_session_logv (BraseroBurnSession *session,
-			   const gchar *format,
-			   va_list arg_list);
-void
-brasero_burn_session_log (BraseroBurnSession *session,
-			  const gchar *format,
-			  ...);
-
-/**
- * Allow to save a whole session settings/source and restore it later.
- * (used internally)
- */
-
-void
-brasero_burn_session_push_settings (BraseroBurnSession *session);
-void
-brasero_burn_session_pop_settings (BraseroBurnSession *session);
-
-void
-brasero_burn_session_push_tracks (BraseroBurnSession *session);
-BraseroBurnResult
-brasero_burn_session_pop_tracks (BraseroBurnSession *session);
-
 
 G_END_DECLS
 
diff --git a/libbrasero-burn/burn-task-ctx.c b/libbrasero-burn/burn-task-ctx.c
index b3ff261..d91112d 100644
--- a/libbrasero-burn/burn-task-ctx.c
+++ b/libbrasero-burn/burn-task-ctx.c
@@ -40,6 +40,7 @@
 
 #include "burn-basics.h"
 #include "brasero-session.h"
+#include "brasero-session-helper.h"
 #include "burn-debug.h"
 #include "burn-task-ctx.h"
 



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