aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/contact-editor
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2002-11-09 11:55:02 +0800
committerChris Toshok <toshok@src.gnome.org>2002-11-09 11:55:02 +0800
commit0e0185635f94d23443341fe15dd8fef4951e8db6 (patch)
tree87c9cabc1eddcb4f8c66e5b6f0b86d475ea9d2cd /addressbook/gui/contact-editor
parent0a9f51518502e55b1172429609969287437b25e0 (diff)
downloadgsoc2013-evolution-0e0185635f94d23443341fe15dd8fef4951e8db6.tar
gsoc2013-evolution-0e0185635f94d23443341fe15dd8fef4951e8db6.tar.gz
gsoc2013-evolution-0e0185635f94d23443341fe15dd8fef4951e8db6.tar.bz2
gsoc2013-evolution-0e0185635f94d23443341fe15dd8fef4951e8db6.tar.lz
gsoc2013-evolution-0e0185635f94d23443341fe15dd8fef4951e8db6.tar.xz
gsoc2013-evolution-0e0185635f94d23443341fe15dd8fef4951e8db6.tar.zst
gsoc2013-evolution-0e0185635f94d23443341fe15dd8fef4951e8db6.zip
oops, missed these casts.
2002-11-08 Chris Toshok <toshok@ximian.com> * gui/widgets/e-addressbook-reflow-adapter.c (addressbook_get_property): oops, missed these casts. * gui/component/addressbook.c (get_master_list): remove the PENDING_PORT_WORK ifdef, just ported ECategoriesMasterList. (make_suboptions): same. * gui/contact-editor/e-contact-editor.c (categories_clicked): same. svn path=/trunk/; revision=18684
Diffstat (limited to 'addressbook/gui/contact-editor')
-rw-r--r--addressbook/gui/contact-editor/e-contact-editor.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c
index f9d541df45..c78715008c 100644
--- a/addressbook/gui/contact-editor/e-contact-editor.c
+++ b/addressbook/gui/contact-editor/e-contact-editor.c
@@ -28,6 +28,7 @@
#include <gtk/gtkcheckmenuitem.h>
#include <gtk/gtkcombo.h>
#include <gtk/gtktextview.h>
+#include <gtk/gtkmessagedialog.h>
#include <libgnomeui/gnome-popup-menu.h>
#include <libgnomeui/gnome-window-icon.h>
#include <libgnome/gnome-i18n.h>
@@ -849,7 +850,6 @@ full_addr_clicked(GtkWidget *button, EContactEditor *editor)
static void
categories_clicked(GtkWidget *button, EContactEditor *editor)
{
-#ifdef PENDING_PORT_WORK
char *categories = NULL;
GtkDialog *dialog;
int result;
@@ -866,7 +866,7 @@ categories_clicked(GtkWidget *button, EContactEditor *editor)
if (dialog == NULL) {
GtkWidget *uh_oh = gtk_message_dialog_new (NULL,
0, GTK_MESSAGE_ERROR,
- GTK_RESPONSE_OK
+ GTK_RESPONSE_OK,
_("Category editor not available."),
NULL);
gtk_widget_show (uh_oh);
@@ -895,7 +895,6 @@ categories_clicked(GtkWidget *button, EContactEditor *editor)
g_free(categories);
}
gtk_widget_destroy(GTK_WIDGET(dialog));
-#endif
}
static void