From 3842daa334095fcd4e8a851ca143b8a72a9094fc Mon Sep 17 00:00:00 2001 From: Will Song Date: Fri, 29 May 2015 20:45:10 -0500 Subject: fix indent code --- src/ui/window.c | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) (limited to 'src/ui') diff --git a/src/ui/window.c b/src/ui/window.c index d2462a61..60b47659 100644 --- a/src/ui/window.c +++ b/src/ui/window.c @@ -61,7 +61,7 @@ static void _win_print(ProfWin *window, const char show_char, GDateTime *time, int flags, theme_item_t theme_item, const char * const from, const char * const message, DeliveryReceipt *receipt); -static void _win_print_wrapped(WINDOW *win, const char * const message); +static void _win_print_wrapped(WINDOW *win, const char * const message, size_t indent); int win_roster_cols(void) @@ -952,12 +952,18 @@ _win_print(ProfWin *window, const char show_char, GDateTime *time, gboolean me_message = FALSE; int offset = 0; int colour = theme_attrs(THEME_ME); + size_t indent = 0; if ((flags & NO_DATE) == 0) { gchar *date_fmt = NULL; char *time_pref = prefs_get_string(PREF_TIME); date_fmt = g_date_time_format(time, time_pref); free(time_pref); + assert(date_fmt != NULL); + + if(strlen(date_fmt) != 0){ + indent = 3 + strlen(date_fmt); + } if (date_fmt && strlen(date_fmt)) { if ((flags & NO_COLOUR_DATE) == 0) { @@ -1004,7 +1010,7 @@ _win_print(ProfWin *window, const char show_char, GDateTime *time, } if (prefs_get_boolean(PREF_WRAP)) { - _win_print_wrapped(window->layout->win, message+offset); + _win_print_wrapped(window->layout->win, message+offset, indent); } else { wprintw(window->layout->win, "%s", message+offset); } @@ -1034,20 +1040,11 @@ _win_indent(WINDOW *win, int size) } static void -_win_print_wrapped(WINDOW *win, const char * const message) +_win_print_wrapped(WINDOW *win, const char * const message, size_t indent) { int wordi = 0; char *word = malloc(strlen(message) + 1); - char *time_pref = prefs_get_string(PREF_TIME); - int indent = 0; - if (g_strcmp0(time_pref, "minutes") == 0) { - indent = 8; - } else if (g_strcmp0(time_pref, "seconds") == 0) { - indent = 11; - } - free(time_pref); - gchar *curr_ch = g_utf8_offset_to_pointer(message, 0); while (*curr_ch != '\0') { -- cgit 1.4.1-2-gfad0 rch' size='10' name='q' value=''/>
path: root/archive/1.vm/exception2.mu
blob: f07c135b7f414ca8732406a6a87cb93daedfbd75 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15