Commit Graph

8350 Commits

Author SHA1 Message Date
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
Christopher Michael 86b1e16283 Add UNUSED where needed.
Remove unused variables.



SVN revision: 51452
2010-08-19 21:19:24 +00:00
Boris Faure ee84be7253 e:winlist: fix issue with non-stop animation
SVN revision: 51451
2010-08-19 21:09:58 +00:00
Christopher Michael fbc45ea4d1 Add UNUSED, Remove unused variables, formatting, etc, etc, etc.
SVN revision: 51449
2010-08-19 20:39:17 +00:00
Christopher Michael 6f4d526140 Add UNUSED.
SVN revision: 51448
2010-08-19 20:32:33 +00:00
Christopher Michael 52f381fcba Add UNUSED
Remove unused variables.



SVN revision: 51447
2010-08-19 20:31:01 +00:00
Christopher Michael d7b096fb53 Fix compiler warning about signed & unsigned comparison.
SVN revision: 51446
2010-08-19 20:17:01 +00:00
Christopher Michael b7de1183a7 Add UNUSED where needed.
Added additional parens where needed.



SVN revision: 51445
2010-08-19 19:40:57 +00:00
Christopher Michael f5e291ae27 Add UNUSED.
Remove an unused variable.



SVN revision: 51444
2010-08-19 19:37:15 +00:00
Christopher Michael 7542136e82 Add UNUSED where needed.
Fix a few harmless warnings about parens.
Fix warnings about comparison between signed and unsigned.



SVN revision: 51443
2010-08-19 19:33:23 +00:00
Christopher Michael d90e5b12b8 Add UNUSED.
Remove unused variables.
Fix formatting, remove whitespace, etc, etc, etc.



SVN revision: 51442
2010-08-19 19:18:43 +00:00
Christopher Michael fca4310f3d Add UNUSED.
Fix formatting.



SVN revision: 51441
2010-08-19 18:48:54 +00:00
Christopher Michael 3e34e7e2e1 Add UNUSED.
Fix formatting.



SVN revision: 51440
2010-08-19 18:46:48 +00:00
Christopher Michael bbd4a538c4 Remove unused variables.
Fix formatting.



SVN revision: 51439
2010-08-19 18:45:17 +00:00
Christopher Michael 07ca950dbc Add UNUSED where needed.
SVN revision: 51438
2010-08-19 18:43:53 +00:00
Christopher Michael 9ffe6d9d80 Add UNUSED where needed.
Fix formatting.



SVN revision: 51437
2010-08-19 18:39:19 +00:00
Christopher Michael 6c8de1768e Add UNUSED where missing.
SVN revision: 51436
2010-08-19 18:37:17 +00:00
Christopher Michael 0eeb09512c Add UNUSED.
SVN revision: 51435
2010-08-19 18:34:05 +00:00
Christopher Michael ad8f0fbf41 Add UNUSED.
SVN revision: 51434
2010-08-19 18:30:26 +00:00
Christopher Michael a688179228 Add UNUSED where needed.
SVN revision: 51433
2010-08-19 18:27:51 +00:00
Christopher Michael b83cc7780c Add UNUSED.
Fix formatting, Remove unused variables, etc, etc.



SVN revision: 51432
2010-08-19 18:25:49 +00:00
Christopher Michael bd2fd46538 Add UNUSED where needed.
Remove unused variables.



SVN revision: 51431
2010-08-19 18:21:13 +00:00
Christopher Michael 275565ddd9 Add UNUSED.
Fix formatting.



SVN revision: 51430
2010-08-19 18:14:28 +00:00
Christopher Michael bd70d9ee89 Add UNUSED where needed.
Fix formatting for 80 cols.



SVN revision: 51429
2010-08-19 18:13:16 +00:00
Christopher Michael 341a708c90 Add UNUSED where needed.
SVN revision: 51428
2010-08-19 17:48:15 +00:00
Christopher Michael 31d7c4d654 Add UNUSED.
Fix formatting.



SVN revision: 51427
2010-08-19 17:45:29 +00:00
Christopher Michael 6659bd83cc Add UNUSED.
Remove unused variables.



SVN revision: 51426
2010-08-19 17:43:15 +00:00
Christopher Michael ef251c3125 Add UNUSED where needed.
Fix formatting.



SVN revision: 51425
2010-08-19 17:40:38 +00:00
Christopher Michael fb7b20fec0 Add UNUSED where needed.
SVN revision: 51424
2010-08-19 17:38:40 +00:00
Christopher Michael 6577483178 Add UNUSED.
SVN revision: 51423
2010-08-19 17:33:21 +00:00
Christopher Michael fc7bdcfd20 Add UNUSED.
SVN revision: 51422
2010-08-19 17:26:46 +00:00
Christopher Michael 9cd88d002d Add UNUSED where needed.
SVN revision: 51421
2010-08-19 17:23:36 +00:00
Christopher Michael e49850d0e5 Add UNUSED where needed.
SVN revision: 51420
2010-08-19 17:16:49 +00:00
Christopher Michael 5205ae87bf Add UNUSED where needed.
SVN revision: 51419
2010-08-19 17:16:06 +00:00
Christopher Michael 2c20883ad3 Add UNUSED where needed.
SVN revision: 51417
2010-08-19 17:12:56 +00:00
Christopher Michael 8a1fa5404c Add UNUSED where needed.
SVN revision: 51416
2010-08-19 17:07:27 +00:00
Christopher Michael 39422eb16a Add UNUSED
Fix comparison compiler warning.



SVN revision: 51415
2010-08-19 16:59:47 +00:00
Christopher Michael 499727c9bf Add UNUSED
SVN revision: 51414
2010-08-19 16:53:20 +00:00
Christopher Michael aaf6cebcb6 Add UNUSED where needed.
Remove whitespace.
Fix formatting, etc, etc.



SVN revision: 51413
2010-08-19 16:52:09 +00:00
Cedric BAIL 4c42c4f167 * e: X server without Xrandr do exist.
SVN revision: 51412
2010-08-19 16:34:40 +00:00
Christopher Michael 3b3c2566d9 Add UNUSED.
SVN revision: 51411
2010-08-19 16:32:14 +00:00
Christopher Michael 73d01fe632 Add UNUSED where needed.
SVN revision: 51410
2010-08-19 16:29:01 +00:00
Christopher Michael 8d27a99570 Add UNUSED where needed.
Remove lots of unused variables.
Fix some formatting.



SVN revision: 51409
2010-08-19 16:14:53 +00:00
Christopher Michael 0ec849905a Add UNUSED where needed.
Use PATH_MAX for a file path.
Remove whitespace.
Fix formatting.



SVN revision: 51408
2010-08-19 16:05:16 +00:00
Christopher Michael 5919e72ad2 Add UNUSED where needed.
SVN revision: 51407
2010-08-19 15:49:25 +00:00
Christopher Michael f1e14daf84 Add UNUSED where needed.
Reduce duplicated code.
Use eina_stringshare_replace rather than add/del several times.



SVN revision: 51406
2010-08-19 15:38:22 +00:00
Christopher Michael 2cd2f124dd Add UNUSED where needed.
Fix formatting.



SVN revision: 51405
2010-08-19 15:27:13 +00:00
Christopher Michael 2547aeefe2 Add UNUSED where needed.
SVN revision: 51404
2010-08-19 15:21:14 +00:00
Christopher Michael 5034dc5d5f Add UNUSED where needed.
SVN revision: 51403
2010-08-19 15:20:05 +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 604713fcac Add UNUSED where needed.
SVN revision: 51377
2010-08-19 00:05:09 +00:00
Christopher Michael 755ef9fb77 Add UNUSED where needed.
SVN revision: 51376
2010-08-19 00:03:02 +00:00
Christopher Michael 68c0bf230c Add UNUSED where needed.
SVN revision: 51375
2010-08-19 00:00:56 +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
Boris Faure fc68f2f491 e:winlist: rename global vars
SVN revision: 51348
2010-08-18 21:04:39 +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
Christopher Michael 290fd324b2 Add unused.
SVN revision: 51332
2010-08-18 19:52:32 +00:00
Christopher Michael 77f6e0d40f Add unused.
SVN revision: 51331
2010-08-18 19:51:11 +00:00
Christopher Michael 162632e3be Add unused.
SVN revision: 51330
2010-08-18 19:49:54 +00:00