aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-01-17 23:35:26 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-01-17 23:35:26 +0800
commitac6e2ee7ef2921c5c42fce4cd44d733f4f55e440 (patch)
treef456f8a05696a25dcf7d9f3de2b7cd860e6739b3
parent569e29360fb99c0bb165066a034a2f68c7038d8c (diff)
downloadgsoc2013-evolution-ac6e2ee7ef2921c5c42fce4cd44d733f4f55e440.tar
gsoc2013-evolution-ac6e2ee7ef2921c5c42fce4cd44d733f4f55e440.tar.gz
gsoc2013-evolution-ac6e2ee7ef2921c5c42fce4cd44d733f4f55e440.tar.bz2
gsoc2013-evolution-ac6e2ee7ef2921c5c42fce4cd44d733f4f55e440.tar.lz
gsoc2013-evolution-ac6e2ee7ef2921c5c42fce4cd44d733f4f55e440.tar.xz
gsoc2013-evolution-ac6e2ee7ef2921c5c42fce4cd44d733f4f55e440.tar.zst
gsoc2013-evolution-ac6e2ee7ef2921c5c42fce4cd44d733f4f55e440.zip
Fix the build by removing a stale function definition. Sigh.
svn path=/trunk/; revision=7578
-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;
-}
-
-