Age | Commit message (Collapse) | Author |
|
Reviewers: raster, cedric
Subscribers: rajeshps, jpeg
Differential Revision: https://phab.enlightenment.org/D5300
Signed-off-by: Cedric Bail <cedric@osg.samsung.com>
|
|
@feature
|
|
|
|
|
|
|
|
@feature
Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
|
|
|
|
|
|
coordinates than the previous one. See link in commit for an explanation
|
|
|
|
when clicking on the title bar
|
|
|
|
|
|
SVN revision: 79995
|
|
SVN revision: 79610
|
|
SVN revision: 79577
|
|
SVN revision: 70365
|
|
Subject: [E-devel] [patch] ecore doxygen doc (2)
Date: Thu, 12 Apr 2012 12:46:04 +0900
Hi,
This is a big patch. It fixes:
- undef #EINA_{TRUE,FALSE} links
- @c for NULL and EINA_{TRUE,FALSE}
- some formatting/spello
- several missing return types
SVN revision: 70117
|
|
SVN revision: 69527
|
|
SVN revision: 69514
|
|
ecore_wince_focus()
SVN revision: 69513
|
|
SVN revision: 68922
|
|
it should have never been used, so remove. cruft. and no- no chlog as
it isnt something that should affect a user
SVN revision: 68366
|
|
SVN revision: 65543
|
|
SVN revision: 60054
|
|
SVN revision: 60051
|
|
SVN revision: 58870
|
|
SVN revision: 57188
|
|
* Greatly improve the resize. Plain, without flickering, etc...
SVN revision: 57182
|
|
SVN revision: 55528
|
|
SVN revision: 52648
|
|
SVN revision: 52247
|
|
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
|
|
* 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
|
|
windows have TRUE/FALSE and he wants it to be like that, if required
he will replace the efl-specific places later.
SVN revision: 46586
|
|
make it consistent.
By: Lucas de Marchi.
SVN revision: 46539
|
|
SVN revision: 43139
|
|
* rename logging macros
SVN revision: 42992
|
|
SVN revision: 42738
|
|
by adding namespace to logging macros
* formatting and warning cleanup
SVN revision: 42341
|
|
with small modifications and fixing
ecore_evas_win32 does not build, though. I think that
if we add log support in evas, all the macro must have
different names, because of all the _private.h headers
that are included in all source files (that's the problem
with win32). I'll fix ecore_evas_win32 build later. Or
someone can do it if he wants :-)
SVN revision: 42274
|
|
* fix warnings
* make the code a bit more readable
SVN revision: 42015
|
|
SVN revision: 40905
|
|
SVN revision: 40462
|
|
* fix fullscreen_set() and borderless_set() functions in ecore_win32
* change SetWindowLong() to SetWindowLongPtr() as it is deprecated
* better error management when dealing with SetWindowLongPtr()
* remove useless SendMessage() calls
* other minor fixes
SVN revision: 40354
|
|
for consistentness, ecore_***_window_del is renamed
ecore_***_window_free
SVN revision: 39918
|
|
too much return in ecore_win32_window.c
fix seg fault in ecore_evas_win32.c
SVN revision: 39144
|
|
formatting
SVN revision: 39129
|
|
* small fix for ecore_win32
SVN revision: 38609
|
|
fix fullscreen
* ecore_evas_win32.c:
add fullscreen (d3d and ddraw) and shape (d3d) support
minor formatting
* configure.ac:
enable direct3d support
SVN revision: 38248
|