diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2011-05-12 08:26:21 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2011-05-12 08:26:21 +0000 |
commit | 2ef02113467afb1cdd4670dc16578549839c1d55 (patch) | |
tree | 58f78bac6e35061013078b676a0dd8cf3eb03721 | |
parent | f749c40fd4c9f8da56cb4a910031fead9a175609 (diff) |
increased the prefs buffer size from 1024 to 8192.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2874 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | libsylph/account.c | 2 | ||||
-rw-r--r-- | libsylph/prefs.h | 2 | ||||
-rw-r--r-- | src/account_dialog.c | 2 |
4 files changed, 8 insertions, 5 deletions
@@ -1,3 +1,10 @@ +2011-05-12 + + * libsylph/prefs.h + libsylph/account.c + src/account_dialog.c: increased the prefs buffer size from 1024 + to 8192. + 2011-05-06 * version 3.1.1 diff --git a/libsylph/account.c b/libsylph/account.c index a6f8da30..2431bf3d 100644 --- a/libsylph/account.c +++ b/libsylph/account.c @@ -37,8 +37,6 @@ #include "utils.h" #include "sylmain.h" -#define PREFSBUFSIZE 1024 - PrefsAccount *cur_account; static GList *account_list = NULL; diff --git a/libsylph/prefs.h b/libsylph/prefs.h index 733c42da..48b1df2e 100644 --- a/libsylph/prefs.h +++ b/libsylph/prefs.h @@ -26,7 +26,7 @@ typedef struct _PrefParam PrefParam; typedef struct _PrefFile PrefFile; -#define PREFSBUFSIZE 1024 +#define PREFSBUFSIZE 8192 typedef enum { diff --git a/src/account_dialog.c b/src/account_dialog.c index 4d6a537e..0e9cb567 100644 --- a/src/account_dialog.c +++ b/src/account_dialog.c @@ -61,8 +61,6 @@ enum N_COLS }; -#define PREFSBUFSIZE 1024 - static struct EditAccount { GtkWidget *window; |