aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-07-11 06:05:56 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-07-11 06:05:56 +0000
commit55dac1ad8c46dd9911566a4e46db1d67da0f8da7 (patch)
tree538f9cc6ba5811704486c2521ff83f07764633d1
parent9e9eff6f8bf3bde63ddc7cc6344a43268a27943e (diff)
editbook.c: win32: fixed a bug that the name entry didn't accept key input.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1853 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.ja5
-rw-r--r--src/editbook.c4
3 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ff6bab2f..e685097e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-07-11
+
+ * src/editbook.c: win32: fixed a bug that the name entry didn't
+ accept key input.
+
2007-07-10
* src/compose.c
diff --git a/ChangeLog.ja b/ChangeLog.ja
index 377b30ff..2be4022e 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,3 +1,8 @@
+2007-07-11
+
+ * src/editbook.c: win32: 名前エントリがキー入力を受け付けないバグを
+ 修正しました。
+
2007-07-10
* src/compose.c
diff --git a/src/editbook.c b/src/editbook.c
index b3106f36..865aea06 100644
--- a/src/editbook.c
+++ b/src/editbook.c
@@ -233,8 +233,8 @@ static void addressbook_edit_book_create( gboolean *cancelled ) {
hsep = gtk_hseparator_new();
gtk_box_pack_end(GTK_BOX(vbox), hsep, FALSE, FALSE, 0);
- g_signal_connect(G_OBJECT(name_entry), "focus_in_event",
- G_CALLBACK(edit_book_name_focus), NULL );
+ /* g_signal_connect(G_OBJECT(name_entry), "focus_in_event",
+ G_CALLBACK(edit_book_name_focus), NULL ); */
g_signal_connect(G_OBJECT(ok_btn), "clicked",
G_CALLBACK(edit_book_ok), cancelled);
g_signal_connect(G_OBJECT(cancel_btn), "clicked",