Commit Graph

10370 Commits

Author SHA1 Message Date
Christopher Michael c9cba144c2 Init/shutdown notification daemon
SVN revision: 51631
2010-08-25 03:59:16 +00:00
Christopher Michael 9a262c740b Actually, that needs to be the notification daemon.
SVN revision: 51630
2010-08-25 03:49:27 +00:00
Christopher Michael 4185513963 Add start of notification support.
SVN revision: 51629
2010-08-25 03:42:50 +00:00
Christopher Michael b35e1e096e Add check for e_notify so config.h will container HAVE_ENOTIFY.
(Used for illume-indicator module so that it can make quickpanels of
dbus notifications).



SVN revision: 51628
2010-08-25 03:42:28 +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
Cedric BAIL 9529a46ad3 * e: cleanup code.
SVN revision: 51568
2010-08-23 12:01:03 +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
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