]> err.no Git - libchamplain/commitdiff
champlain_marker_new_full should not have a GError parameter
authorEmmanuel Rodriguez <emmanuel.rodriguez@gmail.com>
Mon, 13 Apr 2009 19:56:03 +0000 (15:56 -0400)
committerPierre-Luc Beaudoin <pierre-luc@pierlux.com>
Mon, 13 Apr 2009 19:56:03 +0000 (15:56 -0400)
champlain/champlain-marker.c
champlain/champlain-marker.h

index dae88cfe1b078e532521a0e2a75684da1ae6a9e0..3ef7e01466e7df8f1a700328f7620f1ebb83b660 100644 (file)
@@ -668,7 +668,6 @@ champlain_marker_new_from_file (const gchar *filename,
  * champlain_marker_new_full:
  * @text: The text
  * @actor: The image
- * @error: Return location for an error.
  *
  * Returns a new #ChamplainMarker with a drawn marker containing the given
  * image.
@@ -677,8 +676,7 @@ champlain_marker_new_from_file (const gchar *filename,
  */
 ClutterActor *
 champlain_marker_new_full (const gchar *text,
-    ClutterActor *actor,
-    GError **error)
+    ClutterActor *actor)
 {
   ChamplainMarker *marker = CHAMPLAIN_MARKER (champlain_marker_new ());
   if (actor != NULL)
index 2fffd89b890356da9e0a9fd3a61bd5cd41f0a93a..6cf48fe7615a0d1ee004f66c270ead391cc0709f 100644 (file)
@@ -67,8 +67,7 @@ ClutterActor *champlain_marker_new_from_file (const gchar *filename,
     GError **error);
 
 ClutterActor *champlain_marker_new_full (const gchar *text,
-    ClutterActor *actor,
-    GError **error);
+    ClutterActor *actor);
 
 void champlain_marker_set_text (ChamplainMarker *marker,
     const gchar *text);