aboutsummaryrefslogtreecommitdiffstats
path: root/widgets
diff options
context:
space:
mode:
Diffstat (limited to 'widgets')
-rw-r--r--widgets/misc/ChangeLog6
-rw-r--r--widgets/misc/e-messagebox.c20
2 files changed, 6 insertions, 20 deletions
diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog
index 0c8b3bb585..12cbedc55a 100644
--- a/widgets/misc/ChangeLog
+++ b/widgets/misc/ChangeLog
@@ -1,3 +1,9 @@
+2001-01-17 Ettore Perazzoli <ettore@ximian.com>
+
+ * e-messagebox.c (e_message_box_get_checkbox): Remove the version
+ returning `const char *' as of course it doesn't compile. Please
+ compile before committing.
+
2001-01-17 Jeffrey Stedfast <fejj@ximian.com>
* Makefile.am: Added e-messagebox to the build.
diff --git a/widgets/misc/e-messagebox.c b/widgets/misc/e-messagebox.c
index 9a52599253..28ca73a6f7 100644
--- a/widgets/misc/e-messagebox.c
+++ b/widgets/misc/e-messagebox.c
@@ -346,23 +346,3 @@ e_message_box_get_checkbox (EMessageBox *messagebox)
return messagebox->_priv->checkbox;
}
-
-
-/**
- * e_message_box_get_id:
- * @messagebox: The message box to work on
- *
- * Gets the id of the message box. You should use this
- * function instead of using the structure directly.
- *
- * Returns: the id */
-const char *
-e_message_box_get_checkbox (EMessageBox *messagebox)
-{
- g_return_val_if_fail (messagebox != NULL, NULL);
- g_return_val_if_fail (E_IS_MESSAGE_BOX (messagebox), NULL);
-
- return messagebox->_priv->id;
-}
-
-