2007-10-18 [mones] 3.0.2cvs86
[claws.git] / src / editbook.c
index c60dc90c67dd900eccf7e5f872bb1a8987667e91..5d88da4940a90f487be443ac8b735e5f10555de3 100644 (file)
@@ -1,10 +1,10 @@
 /*
  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 2001-2006 Match Grun and the Sylpheed-Claws team
+ * Copyright (C) 2001-2007 Match Grun and the Claws Mail team
  *
  * 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
+ * the Free Software Foundation; either version 3 of the License, or
  * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
@@ -13,8 +13,8 @@
  * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ * 
  */
 
 /*
@@ -65,7 +65,7 @@ static struct _AddrBookEdit_Dlg {
 /*
 * Edit functions.
 */
-void edit_book_status_show( gchar *msg ) {
+static void edit_book_status_show( gchar *msg ) {
        if( addrbookedit_dlg.statusbar != NULL ) {
                gtk_statusbar_pop( GTK_STATUSBAR(addrbookedit_dlg.statusbar), addrbookedit_dlg.status_cid );
                if( msg ) {
@@ -110,7 +110,7 @@ static void edit_book_file_check( void ) {
 
        t = addrbook_test_read_file( abf, abf->fileName );
        if( t == MGU_SUCCESS ) {
-               sMsg = _("File appears to be Ok.");
+               sMsg = _("File appears to be OK.");
        }
        else if( t == MGU_BAD_FORMAT ) {
                sMsg = _("File does not appear to be a valid address book format.");
@@ -147,7 +147,7 @@ static void addressbook_edit_book_create( gboolean *cancelled ) {
        GtkWidget *hsbox;
        gint top;
 
-       window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
+       window = gtkut_window_new(GTK_WINDOW_TOPLEVEL, "editbook");
        gtk_widget_set_size_request(window, 450, -1);
        gtk_container_set_border_width( GTK_CONTAINER(window), 0 );
        gtk_window_set_title(GTK_WINDOW(window), _("Edit Addressbook"));