Commit Graph

5171 Commits

Author SHA1 Message Date
Carsten Haitzler 62862fa56f dont use evas_imaging anymore... and... do svg test the right way.
SVN revision: 51708
2010-08-29 02:25:57 +00:00
Carsten Haitzler 1301f7e510 be a bit nicer in auto desktop creation from bd
SVN revision: 51657
2010-08-26 12:14:38 +00:00
Lucas De Marchi 121f40d86f Revert and re-apply badnull patch
Revert previous patch generated by badnull.cocci script, and apply the new one.
The main difference is that assert and assert-like functions are not touched
anymore.




SVN revision: 51650
2010-08-26 01:34:13 +00:00
Christopher Michael f467fa997c Fix compiler warning about integer from pointer without cast.
SVN revision: 51588
2010-08-23 20:47:01 +00:00
Leif Middelschulte cf91a2561a From: Leif Middelschulte <leif.middelschulte@gmail.com>
this is a little patch for e_randr related stuff.

- replace the saving of a monitor's EDID with a hash of it.
- rename a variable name



SVN revision: 51508
2010-08-22 03:49:34 +00:00
Lucas De Marchi 63f07459a0 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
Carsten Haitzler b2332d5946 notes.
SVN revision: 51478
2010-08-21 03:27:21 +00:00
Carsten Haitzler ddb6cf998b disable union for randr config... THIS is causing problems... big time.
SVN revision: 51477
2010-08-21 02:51:54 +00:00
Carsten Haitzler e6a803158a j++!!!!
SVN revision: 51474
2010-08-21 01:52:20 +00:00
Carsten Haitzler 9cb6681b35 simply breaking some long lines for readability.
SVN revision: 51473
2010-08-21 01:48:19 +00:00
Christopher Michael 12521ce427 Fix another case of unused paramater.
SVN revision: 51456
2010-08-20 00:45:45 +00:00
Christopher Michael d11795c80d Fix a couple more cases of UNUSED paramaters.
SVN revision: 51455
2010-08-20 00:44:27 +00:00
Carsten Haitzler 7b47cd8425 other bit of lief's patch.
SVN revision: 51453
2010-08-19 22:49:13 +00:00
Cedric BAIL 4c42c4f167 * e: X server without Xrandr do exist.
SVN revision: 51412
2010-08-19 16:34:40 +00:00
Michael BOUCHAUD 8f557cd30c Use a const char * here, remove some warning
SVN revision: 51402
2010-08-19 15:18:18 +00:00
Christopher Michael e2c4d23e38 Add Unused.
SVN revision: 51371
2010-08-18 22:23:26 +00:00
Christopher Michael f5282a1018 Add unused.
SVN revision: 51370
2010-08-18 22:20:52 +00:00
Christopher Michael 5826cdfbb8 Add UNUSED where needed.
SVN revision: 51369
2010-08-18 22:16:57 +00:00
Christopher Michael 76bd06d87c Add unused where needed.
SVN revision: 51368
2010-08-18 22:09:27 +00:00
Christopher Michael 691061d7bf Add UNUSED.
Remove unused variable(s).



SVN revision: 51367
2010-08-18 22:05:27 +00:00
Christopher Michael 2d77de85d5 Add UNUSED
Add missing function(s) for Evas_Smart_Class.



SVN revision: 51366
2010-08-18 21:59:38 +00:00
Christopher Michael 027e79bea1 Add UNUSED where needed.
SVN revision: 51365
2010-08-18 21:56:51 +00:00
Christopher Michael 6e4b7513cb Revert PATH_MAX change there...PATH_MAX may not be long enough.
SVN revision: 51364
2010-08-18 21:49:48 +00:00
Christopher Michael ff1030a1e5 Add UNUSED.
SVN revision: 51363
2010-08-18 21:48:45 +00:00
Christopher Michael c4075dfaed Add UNUSED
Use PATH_MAX.



SVN revision: 51362
2010-08-18 21:41:27 +00:00
Christopher Michael 8ad7536fa3 Add UNUSED.
SVN revision: 51360
2010-08-18 21:25:29 +00:00
Christopher Michael 0f8e879386 Add UNUSED where needed.
SVN revision: 51359
2010-08-18 21:24:03 +00:00
Christopher Michael 496a3bb5b0 Add UNUSED where needed.
SVN revision: 51358
2010-08-18 21:21:49 +00:00
Christopher Michael 737964813b Add unused where needed.
SVN revision: 51357
2010-08-18 21:20:36 +00:00
Christopher Michael 5198eb8e5c Add UNUSED.
SVN revision: 51356
2010-08-18 21:19:36 +00:00
Christopher Michael b2433413d9 Add UNUSED.
Use PATH_MAX.



SVN revision: 51355
2010-08-18 21:18:31 +00:00
Christopher Michael 790bdb035b Add UNUSED.
SVN revision: 51352
2010-08-18 21:15:41 +00:00
Christopher Michael 7a7883c7aa Add UNUSED.
SVN revision: 51351
2010-08-18 21:14:42 +00:00
Christopher Michael 045040d9cf Add UNUSED
Fix some formatting.



SVN revision: 51350
2010-08-18 21:13:06 +00:00
Christopher Michael bf5e9281e3 Add UNUSED
SVN revision: 51349
2010-08-18 21:05:20 +00:00
Christopher Michael aea8bde3e0 Add unused.
SVN revision: 51347
2010-08-18 21:00:57 +00:00
Christopher Michael 4804fe3eb3 Add UNUSED.
SVN revision: 51346
2010-08-18 20:59:17 +00:00
Christopher Michael 1a0d9a7ccb Add unused.
SVN revision: 51345
2010-08-18 20:42:15 +00:00
Christopher Michael 505bb68cde Add UNUSED.
SVN revision: 51344
2010-08-18 20:41:05 +00:00
Christopher Michael b58e485a01 Add UNUSED
SVN revision: 51343
2010-08-18 20:32:36 +00:00
Christopher Michael 37a0e6a197 Fix 'var may be used uninitialized' warning.
SVN revision: 51342
2010-08-18 20:31:35 +00:00
Christopher Michael 20c922e047 Remove unused function(s).
SVN revision: 51341
2010-08-18 20:30:23 +00:00
Christopher Michael 4cf62f8b80 Add UNUSED.
SVN revision: 51340
2010-08-18 20:29:41 +00:00
Christopher Michael 26d1480832 Add unused.
Use PATH_MAX.



SVN revision: 51339
2010-08-18 20:28:37 +00:00
Christopher Michael 9469f5ff41 Add UNUSED.
Init some vars.



SVN revision: 51338
2010-08-18 20:25:13 +00:00
Christopher Michael f8b4a01036 Add unused.
SVN revision: 51337
2010-08-18 20:09:01 +00:00
Christopher Michael 2a1b737023 Add unused.
SVN revision: 51336
2010-08-18 20:06:40 +00:00
Christopher Michael 792a5f4245 Add unused.
SVN revision: 51335
2010-08-18 20:06:02 +00:00
Christopher Michael 118679203c Add unused.
Use PATH_MAX.



SVN revision: 51334
2010-08-18 20:04:36 +00:00
Christopher Michael 3ee025a595 Add unused.
Fix uninitialized vars.



SVN revision: 51333
2010-08-18 19:53:59 +00:00