diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2004-02-12 02:55:13 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-02-12 02:55:13 +0800 |
commit | c894b82a93f4c20f223ec65f94fcf82bec7d46f9 (patch) | |
tree | 201aa416c54a695dfd1b6d77ad2af6e6f37684dc | |
parent | db1b452b25b7c901e961ae034a4167b5fe70a3d5 (diff) | |
download | gsoc2013-evolution-c894b82a93f4c20f223ec65f94fcf82bec7d46f9.tar.gz gsoc2013-evolution-c894b82a93f4c20f223ec65f94fcf82bec7d46f9.tar.zst gsoc2013-evolution-c894b82a93f4c20f223ec65f94fcf82bec7d46f9.zip |
Add license & config.h
2004-02-11 Jeffrey Stedfast <fejj@ximian.com>
* em-popup.c: Add license & config.h
svn path=/trunk/; revision=24709
-rw-r--r-- | mail/ChangeLog | 4 | ||||
-rw-r--r-- | mail/em-popup.c | 30 |
2 files changed, 32 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 1bca712720..6c2545d11e 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,7 @@ +2004-02-11 Jeffrey Stedfast <fejj@ximian.com> + + * em-popup.c: Add license & config.h + 2004-02-11 Radek Doulik <rodo@ximian.com> * em-junk-filter.c (em_junk_sa_test_spamd): if spamc is not diff --git a/mail/em-popup.c b/mail/em-popup.c index 128db12d12..e161db5ac4 100644 --- a/mail/em-popup.c +++ b/mail/em-popup.c @@ -1,7 +1,35 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Authors: Michael Zucchi <notzed@ximian.com> + * + * Copyright 2004 Ximian, Inc. (www.ximian.com) + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. + * + */ + + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif #include <string.h> #include <stdlib.h> +#include <glib.h> + #include <gtk/gtkmenu.h> #include <gtk/gtkmenuitem.h> #include <gtk/gtkimagemenuitem.h> @@ -13,8 +41,6 @@ #include <libgnome/gnome-url.h> -#include <glib.h> - #include "em-popup.h" #include "e-util/e-msgport.h" #include "em-utils.h" |