Carsten Haitzler
5187bf3585
fix up copyings likewise. nicely standardised templateish.
...
SVN revision: 51150
13 years ago
Sebastian Dransfeld
2dc15f4d89
formatting
...
SVN revision: 51137
13 years ago
Sebastian Dransfeld
b001a8968e
Fix theme passed to efreet_icon_cache_add
...
Just pass NULL, no need for NULL theme
SVN revision: 51136
13 years ago
Joerg Sonnenberger
607e5d4b9b
From: Joerg Sonnenberger <joerg@britannica.bec.de>
...
Subject: [E-devel] [PATCH] efreet and icon loading
Hi all,
attached patch fixes two issues:
(1) If using a non-default prefix, share/pixmaps should be checked
before the hard-coded /usr/share/pixmaps fallback. This basically
restores symmetry with the other cases like share/icons.
(2) Do a fallback lookup if the theme is not valid or faked. This can
happen if only hicolor is installed and e17 decides to use Tango.
Before, e.g. gimp's icon wasn't picked up because the short cut was too
early.
SVN revision: 51124
13 years ago
Carsten Haitzler
1325b20a81
sloppy ecore_job handle! fix!
...
SVN revision: 51107
13 years ago
Cedric BAIL
8a1a12333f
* eet: fix API break.
...
SVN revision: 51084
13 years ago
Cedric BAIL
a6645cb746
* eina: fix eina array threadsafe version.
...
Also add iterator and accessor ability to walk threadsafely.
Rename EINA_EACH to EINA_EACH_CB to match other callback cast.
SVN revision: 51000
13 years ago
Cedric BAIL
5efed73f07
* efreet: fix some potential source of segv.
...
SVN revision: 50942
13 years ago
Sebastian Dransfeld
03f82b7d73
Fix clearing of theme cache
...
SVN revision: 50825
13 years ago
Sebastian Dransfeld
9edfb9d456
Check NULL return
...
SVN revision: 50822
13 years ago
Sebastian Dransfeld
80c2d94afd
Check NULL return
...
SVN revision: 50821
13 years ago
Sebastian Dransfeld
a737a1d044
Check for NULL return
...
SVN revision: 50818
13 years ago
Sebastian Dransfeld
7b5e166c85
Check NULL return
...
SVN revision: 50817
13 years ago
Lucas De Marchi
0a4617ae38
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
13 years ago
Sebastian Dransfeld
7bf67b046b
key and value aren't const
...
SVN revision: 50809
13 years ago
Sebastian Dransfeld
0a3f53c3b1
Check for null return
...
SVN revision: 50808
13 years ago
Sebastian Dransfeld
2ccf1a156d
Remove fake_null try 2
...
SVN revision: 50807
13 years ago
Carsten Haitzler
1837b63b38
ummmm revert. crash crash crash.
...
SVN revision: 50789
13 years ago
Sebastian Dransfeld
eba0c34bf9
Remove unneeded fake_null theme
...
SVN revision: 50788
13 years ago
Sebastian Dransfeld
c623230e98
Remove unneeded eina_hash_del
...
We already checked that this value isn't in the hash.
SVN revision: 50787
13 years ago
Sebastian Dransfeld
b197b55abc
Check return NULL
...
SVN revision: 50786
13 years ago
Sebastian Dransfeld
beacf6f976
use EINA_LIST_FREE
...
SVN revision: 50785
13 years ago
Sebastian Dransfeld
08e9824c6e
check return value from NEW
...
SVN revision: 50784
13 years ago
Sebastian Dransfeld
99673bb0a8
fix malloc calls
...
check return value and remove unneeded sizeof(char)
SVN revision: 50783
13 years ago
Sebastian Dransfeld
1576311af3
alloc the right amount of mem
...
sizeof(char) is 1, and sizeof(char *) is wrong for strings
SVN revision: 50782
13 years ago
Sebastian Dransfeld
69d0626265
use alloca for in function mem
...
SVN revision: 50781
13 years ago
Sebastian Dransfeld
7f93656d7b
check return value from malloc
...
SVN revision: 50780
13 years ago
Sebastian Dransfeld
8554a0c23b
free data on realloc error
...
SVN revision: 50779
13 years ago
Massimiliano Calamelli
465a55b467
Leak-- using the macro
...
SVN revision: 50763
13 years ago
Sebastian Dransfeld
4b221c3936
Check return value for realloc
...
SVN revision: 50753
13 years ago
Sebastian Dransfeld
31c6799a7e
goto not needed anymore with alloca
...
SVN revision: 50496
13 years ago
Sebastian Dransfeld
78f80647ea
use eina hash set
...
SVN revision: 50494
13 years ago
Sebastian Dransfeld
230461d56b
free data on error
...
SVN revision: 50493
13 years ago
Sebastian Dransfeld
b76d9490dc
Fix errors reported by clang
...
SVN revision: 50492
13 years ago
Lucas De Marchi
2a84379ba9
Remove unneeded code with notnull.cocci script
...
The notnull.cocci script from Coccinelle finds places where you check if a
variable is NULL, but it's known not to be NULL. The check can be safely
removed. For example, this code would be caught by notnull:
if (!var) return;
if (var && var->fld) { ... }
It's needless to check again if var is not NULL because if it's in fact NULL,
it would have returned on the previous "if". This commit removes all the
trivial places where this pattern happens. Another patch will be generated for
the more complex cases.
SVN revision: 50241
13 years ago
Christopher Michael
c6f20a9cdf
Missed two .pc.in files on the header move there :(
...
SVN revision: 50144
13 years ago
Christopher Michael
4f972b800b
Move Efreet (and associated headers) to own dir.
...
SVN revision: 50143
13 years ago
Carsten Haitzler
89baaff057
and final post snap - next releasename
...
SVN revision: 49903
13 years ago
Carsten Haitzler
83b36be7a3
snap+release
...
SVN revision: 49899
13 years ago
Carsten Haitzler
4d65425dd8
Snapshot efreet
...
SVN revision: 49895
13 years ago
Sebastian Dransfeld
bcb8744bc0
formatting
...
SVN revision: 49840
13 years ago
Sebastian Dransfeld
51c6fc3785
formatting
...
SVN revision: 49839
13 years ago
Sebastian Dransfeld
36b570e9bc
formatting
...
SVN revision: 49838
13 years ago
Cedric BAIL
55524b4e87
* efreet: remove warning due to change in Ecore API.
...
SVN revision: 49831
13 years ago
Cedric BAIL
a1bfc834d5
* configure.ac: take inept translation a little bit into account.
...
SVN revision: 49743
13 years ago
Sebastian Dransfeld
a392e677a7
flock -> fcntl
...
SVN revision: 49650
13 years ago
Sebastian Dransfeld
28878014c9
flock -> fcntl
...
flock isn't portable. Fix some headers too.
SVN revision: 49649
13 years ago
Gustavo Sverzut Barbieri
ddb8c95fa9
SVN_REPO_PATH envvar during autoconf to use svnversion in there.
...
Some systems, like the Gentoo, copy the svn contents somewhere before
doing the autoconf, this may result in lack of .svn and thus minor
version "0".
This patch introduces the $SVN_REPO_PATH to say where the svn checkout
containing the ".svn" directory is.
SVN revision: 49594
13 years ago
Vincent Torri
5a8135174a
missing headers
...
SVN revision: 49545
13 years ago
Carsten Haitzler
1520bad01b
restore after snap/release
...
SVN revision: 49540
13 years ago