diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-01-17 23:35:26 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-01-17 23:35:26 +0800 |
commit | ac6e2ee7ef2921c5c42fce4cd44d733f4f55e440 (patch) | |
tree | f456f8a05696a25dcf7d9f3de2b7cd860e6739b3 /widgets/misc/e-messagebox.c | |
parent | 569e29360fb99c0bb165066a034a2f68c7038d8c (diff) | |
download | gsoc2013-evolution-ac6e2ee7ef2921c5c42fce4cd44d733f4f55e440.tar.gz gsoc2013-evolution-ac6e2ee7ef2921c5c42fce4cd44d733f4f55e440.tar.zst gsoc2013-evolution-ac6e2ee7ef2921c5c42fce4cd44d733f4f55e440.zip |
Fix the build by removing a stale function definition. Sigh.
svn path=/trunk/; revision=7578
Diffstat (limited to 'widgets/misc/e-messagebox.c')
-rw-r--r-- | widgets/misc/e-messagebox.c | 20 |
1 files changed, 0 insertions, 20 deletions
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; -} - - |