Commit Graph

23 Commits

Author SHA1 Message Date
maxerba 622dd495a1 Updated to build with e19. For older versions of E checkout the enlightenment-0.18 branch. 2014-03-28 21:19:19 +01:00
Miculcy Brian 38ff81ae71 fix recent menu api break
SVN revision: 52062
2010-09-09 14:50:07 +00:00
Lucas De Marchi d98f684bad 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
Christopher Michael ee3a80e3ac And call correct configure calls.
SVN revision: 46984
2010-03-08 06:46:52 +00:00
Christopher Michael bd897a0606 Work on getting net module to compile again.
SVN revision: 46980
2010-03-08 06:16:41 +00:00
Sebastian Dransfeld bb71e2bdc7 Make non static functions EINTERN
SVN revision: 45447
2010-01-22 20:01:01 +00:00
Christopher Michael 817925d225 Make net compile again.
SVN revision: 45262
2010-01-17 15:59:00 +00:00
Christopher Michael 776baedaf9 Update to use eina_stringshare
SVN revision: 37345
2008-10-31 01:39:42 +00:00
Eric Schuele 0d3d2343dc Making sure all module's configuration dialogs have appropriate names and classes consistent with the rest of the e_modules.
SVN revision: 34630
2008-05-20 14:53:12 +00:00
Christopher Michael 88550fe7a5 Fix up net & screenshot modules to play nicely.
SVN revision: 33338
2008-01-04 06:39:21 +00:00
Sebastian Dransfeld 1e454a6ef8 get text from module locale
SVN revision: 32629
2007-11-12 11:17:35 +00:00
Christopher Michael 0daaaf9481 Use correct edj file for icon.
SVN revision: 32243
2007-10-31 14:15:19 +00:00
Miculcy Brian 3be5040da0 API breakage: e_widget_entry_add() allows now to set a cb function for text change events.
SVN revision: 32009
2007-10-07 21:26:48 +00:00
Sebastian Dransfeld 2f3ac93e24 Fix for gadcon update. Not added new gadcon functions.
SVN revision: 31732
2007-09-16 01:46:52 +00:00
Peter Wehrfritz 313ebefbee *API BREAK* in Ecore Data
SVN revision: 30971
2007-07-25 17:06:42 +00:00
Massimo Maiurana 3cdabcbd55 restored i18n support
SVN revision: 28560
2007-03-05 00:09:40 +00:00
Christopher Michael aed9c89774 Add option to allow disabling of popup window on mouse_over.
SVN revision: 28412
2007-02-21 02:13:35 +00:00
Christopher Michael 205f272dfb Free the newly added app string so we don't leak mem.
SVN revision: 28357
2007-02-14 09:29:38 +00:00
Christopher Michael 735d25b743 Added option to always show text on the icon.
Added option to launch an app on double-click.


SVN revision: 28355
2007-02-14 08:23:45 +00:00
Christopher Michael 2e3c6d180b Remove option to set the poll time. Use a hard-coded time that should be
plenty fast enough to get activity changes.


SVN revision: 28327
2007-02-12 21:23:07 +00:00
Miculcy Brian b21cc0cfdc New configuration option which allows to define the activity level.
SVN revision: 28322
2007-02-12 15:55:25 +00:00
Christopher Michael 54936eddf3 Some additional trapping and a config_updated hook to reset the timer.
Remove the module.edj file as it shouldn't be in cvs.
Some changes to Makefile.am for a better maintainer-clean.

Big Thanks To KainX for his help :)


SVN revision: 28307
2007-02-11 15:47:42 +00:00
Michael Jennings cec260cdd5 Sun Feb 11 04:28:49 2007 Michael Jennings (mej)
devilhorns' new net module.
----------------------------------------------------------------------


SVN revision: 28305
2007-02-11 15:28:53 +00:00