Commit Graph

22 Commits

Author SHA1 Message Date
3reb0s dc8c583ea4 mail: show correct mail-count for Maildir
The Maildir-Option in the Mail-Module doesn´t work properly. The
Mail-Count is only displayed when the Maildir gets updated. My guess
would be that the Mail-Module waits for a specific event on the Maildir
before the filewatcher gets active and starts to count the files.

Patch by: 3reb0s

SVN revision: 80445
2013-06-17 10:03:29 +01:00
Mike Blumenkrantz 4eb6ae69ca sed -i 's/(E_Gadcon_Client_Class/(const E_Gadcon_Client_Class/g'
SVN revision: 74475
2012-07-27 08:35:53 +00:00
Mike Blumenkrantz be26eff5d9 NODELAY for mail!
SVN revision: 66074
2011-12-10 07:05:33 +00:00
Boris Faure c2a5233717 E-MODULES-EXTRA: add const to _gc_label() functions
SVN revision: 65208
2011-11-14 22:17:19 +00:00
Lucas De Marchi 0f08cb9c7d mail: fix unitialized access
SVN revision: 64076
2011-10-14 12:24:56 +00:00
Tomas Cech 9d983b0c10 mail: move #ifdef PRINT_LOTS_OF_DEBUG inside function
Patch by: Tomas Cech <tcech@suse.cz>


SVN revision: 64075
2011-10-14 12:23:01 +00:00
Vincent Torri ff308855b7 fix possible undef ref when gettext is disabled or not installed
SVN revision: 59997
2011-06-06 17:36:38 +00:00
Miculcy Brian 905c1517e3 mail: disable debug messages
SVN revision: 59554
2011-05-20 16:21:07 +00:00
Hannes Janetzek 3254557194 e-modules/mail: always show inboxes in top-level
SVN revision: 58003
2011-03-22 23:21:20 +00:00
Hannes Janetzek 394a0ff350 e-modules: update do e_gadcon_util_cliet_menu_append api changes. allowing to have settings menu in toplevel again
SVN revision: 57828
2011-03-17 17:24:53 +00:00
Hannes Janetzek b15df6e387 fix: examine imap folders with spaces in label
SVN revision: 56940
2011-02-10 22:50:53 +00:00
Mike Blumenkrantz 61f87516e7 try mixed proto
SVN revision: 52631
2010-09-23 09:10:05 +00:00
Mike Blumenkrantz a2293fc949 add debugging info with -DPRINT_LOTS_OF_DEBUG
SVN revision: 52547
2010-09-21 18:41:56 +00:00
Miculcy Brian 7bf896b370 fix recent menu api break
SVN revision: 52058
2010-09-09 14:49:47 +00:00
Lucas De Marchi 185e731b7b Convert (hopefully) all comparisons to NULL
Apply badzero.cocci, badnull.coci and badnull2.cocci

This should convert all cases where there's a comparison to NULL to simpler
forms. This patch applies the following transformations:

code before patch               ||code after patch
===============================================================

return a == NULL;                 return !a;

return a != NULL;                 return !!a;

func(a == NULL);                  func(!a);

func(a != NULL);                  func(!!a);

b = a == NULL;                    b = !a;

b = a != NULL;                    b = !!a;

b = a == NULL ? c : d;            b = !a ? c : d;

b = a != NULL ? c : d;            b = a ? c : d;


other cases:

a == NULL                         !a
a != NULL                         a




SVN revision: 51487
2010-08-21 13:52:25 +00:00
Lucas De Marchi e568bdc82f FORMATTING
* Remove vim modelines:
 find . -name '*.[chx]' -exec sed -i '/\/\*$/ {N;N;/ \* vim:ts/d}' \{\} \;
 find . -name '*.[chx]' -exec sed -i '/\/[\*\/] *vim:/d' \{\} \;

* Remove leading blank lines:
 find . -name '*.[cxh]' -exec sed -i '/./,$!d'

If you use vim, use this in your .vimrc:
set ts=8 sw=3 sts=8 expandtab cino=>5n-3f0^-2{2(0W1st0



SVN revision: 50816
2010-08-04 16:57:32 +00:00
Lucas De Marchi 867902dc9e Fixes for Ecore Api changes
Patch automatically by Coccinelle to fix the
callbacks used by the following functions:

 * ecore_event_handler_add()
 * ecore_event_filter_add()
 * ecore_idler_add()
 * ecore_idle_enterer_add()
 * ecore_idle_enterer_before_add()
 * ecore_idle_exiter_add()
 * ecore_main_fd_handler_add()
 * ecore_main_win32_handler_add()
 * ecore_timer_add()
 * ecore_timer_loop_add()
 * ecore_animator_add()
 * ecore_poller_add()


SVN revision: 50108
2010-07-08 00:57:17 +00:00
Christopher Michael b17e200dc9 Fixes for Ecore Api changes.
SVN revision: 50072
2010-07-06 17:52:01 +00:00
xcomputerman 37f32c8d53 Fix broken compile
SVN revision: 47108
2010-03-10 16:51:53 +00:00
Christopher Michael 4240a449e8 Fix API Inconsistency:
e_ilist_min_size_* to e_ilist_size_min_*



SVN revision: 42163
2009-09-01 16:39:10 +00:00
Christopher Michael 07afe9c0ce Fix API Inconsistency in regards to e_widget_min_size_* . Renamed to
e_widget_size_min_* . This Large commit should fix everything in svn that is
using those functions.



SVN revision: 42152
2009-09-01 13:34:42 +00:00
Daniel Kolesa e8cbe17df3 EMODULES: Fix & Unify autofoo stuff everywhere, fix dist tarballs support, add ability to create dist tarball of all modules.
SVN revision: 41571
2009-08-03 14:49:56 +00:00