platform/upstream/efl.git
13 years agoEfreet: Create theme before accessing it
Sebastian Dransfeld [Tue, 15 Mar 2011 18:54:00 +0000 (18:54 +0000)]
Efreet: Create theme before accessing it

SVN revision: 57773

13 years agoEfreet: And revert logging, no longer needed
Sebastian Dransfeld [Tue, 15 Mar 2011 18:49:49 +0000 (18:49 +0000)]
Efreet: And revert logging, no longer needed

SVN revision: 57772

13 years agoEfreet: Add some logging
Sebastian Dransfeld [Tue, 15 Mar 2011 17:07:19 +0000 (17:07 +0000)]
Efreet: Add some logging

SVN revision: 57769

13 years agoevas: this will fix some clipping issue with map.
Cedric BAIL [Tue, 15 Mar 2011 16:20:57 +0000 (16:20 +0000)]
evas: this will fix some clipping issue with map.

This patch should be backported if it work well. Need more tester.
It doesn't fix a missing del detection in enki and elementary_test transit 4.

SVN revision: 57765

13 years agoEvas common: Use _GNU_SOURCE instead of __USE_GNU.
Tom Hacohen [Tue, 15 Mar 2011 14:23:07 +0000 (14:23 +0000)]
Evas common: Use _GNU_SOURCE instead of __USE_GNU.

Thanks to aissen for letting us know.

SVN revision: 57764

13 years agoEvas font-engine: Fixed bug with different sizes in Korean text.
Tom Hacohen [Tue, 15 Mar 2011 11:00:29 +0000 (11:00 +0000)]
Evas font-engine: Fixed bug with different sizes in Korean text.

I'm still not sure if it's just a workaround that just fixes a symptom
of a bigger issue, or actually needed, but this is good until I figure
this out completely.

SVN revision: 57761

13 years agoEvas: formatting and add ico module building
Vincent Torri [Mon, 14 Mar 2011 20:33:44 +0000 (20:33 +0000)]
Evas: formatting and add ico module building

1) i like alphabetical order (build order of modules and configure output

2) ico module was not built

SVN revision: 57747

13 years agoevas: add memory image loader api. ask not how it works or i shall
Carsten Haitzler [Mon, 14 Mar 2011 10:53:37 +0000 (10:53 +0000)]
evas: add memory image loader api. ask not how it works or i shall
disembowel you. ktnxbi.

SVN revision: 57736

13 years agoEdje part-text: Updated docs.
Tom Hacohen [Mon, 14 Mar 2011 09:19:05 +0000 (09:19 +0000)]
Edje part-text: Updated docs.

SVN revision: 57733

13 years agoedje: limited support of proxy for edje inspector and edje edit.
Cedric BAIL [Sun, 13 Mar 2011 15:41:12 +0000 (15:41 +0000)]
edje: limited support of proxy for edje inspector and edje edit.

SVN revision: 57727

13 years agoEcore:
Vincent Torri [Sun, 13 Mar 2011 10:46:25 +0000 (10:46 +0000)]
Ecore:
Windows : change API (I allow myself that right for the win32 port :) )

SVN revision: 57724

13 years agoformatting
Vincent Torri [Sun, 13 Mar 2011 10:42:22 +0000 (10:42 +0000)]
formatting

SVN revision: 57723

13 years agohandle 1bit icos properly. oops.
Carsten Haitzler [Sun, 13 Mar 2011 04:41:30 +0000 (04:41 +0000)]
handle 1bit icos properly. oops.
make ico loader more robust for broken ico/cur files. ico/cur is a
broken format... but hey. it has to be dealt with.

SVN revision: 57721

13 years agosed -i 's/[\t ]\+$//' **/*.{c,h}
Mike Blumenkrantz [Sat, 12 Mar 2011 18:41:03 +0000 (18:41 +0000)]
sed -i 's/[\t ]\+$//' **/*.{c,h}

SVN revision: 57709

13 years ago+EEZE_UDEV_TYPE_NET, thanks to Clement Battin
Mike Blumenkrantz [Sat, 12 Mar 2011 18:39:33 +0000 (18:39 +0000)]
+EEZE_UDEV_TYPE_NET, thanks to Clement Battin

SVN revision: 57708

13 years agoedje: oops, fix stupid edje_cc bug preventing compilation of most theme.
Cedric BAIL [Fri, 11 Mar 2011 23:03:46 +0000 (23:03 +0000)]
edje: oops, fix stupid edje_cc bug preventing compilation of most theme.

SVN revision: 57699

13 years agoedje: add PROXY part.
Cedric BAIL [Fri, 11 Mar 2011 17:46:29 +0000 (17:46 +0000)]
edje: add PROXY part.

example:

collections {
   group {
      name: "main";
      parts {
         part {
            name: "sub1";
            type: GROUP;
            source: "sub1";

            description {
               rel1.relative: 0.5 0.5;
               rel2.relative: 1.0 1.0;
            }
         }

         part {
            name: "pro2";
            type: PROXY;

            description {
               rel1.relative: 0.0 0.5;
               rel2.relative: 0.5 1.0;
               source: "sub1";
               color: 255 0 0 128;

               map {
                  on: 1;
                  smooth: 1;
                  rotation {
                     z: 30;
                  }
               }
            }
         }
      }
   }

   group {
      name: "sub1";
      parts {
         part {
            name: "rect";
            type: RECT;

            description {
               rel1.relative: 0.0 0.0;
               rel2.relative: 0.5 0.5;
               color: 255 0 0 255;

               map {
                  on: 1;
                  smooth: 1;
                  rotation {
                     z: -30;
                  }
               }
            }
         }

         part {
            name: "pro1";
            type: PROXY;

            description {
               rel1.relative: 0.5 0.0;
               rel2.relative: 1.0 0.7;
               color: 128 128 0 128;
               source: rect;
            }
         }
      }
   }
}

SVN revision: 57694

13 years agoEvas: add ico loader!
Carsten Haitzler [Fri, 11 Mar 2011 15:07:25 +0000 (15:07 +0000)]
Evas: add ico loader!

SVN revision: 57693

13 years agoedje: correctly propagate event recursivly with existing and non existing part.
Cedric BAIL [Thu, 10 Mar 2011 17:27:55 +0000 (17:27 +0000)]
edje: correctly propagate event recursivly with existing and non existing part.

NOTE: I don't backport it yet as I would like some test before doing so.

SVN revision: 57678

13 years agochlog++ - and yes i know. backport to 1.0.1 - as i said already. will
Carsten Haitzler [Thu, 10 Mar 2011 12:13:25 +0000 (12:13 +0000)]
chlog++ - and yes i know. backport to 1.0.1 - as i said already. will
go over these when i get to it.

SVN revision: 57669

13 years agook - finally - biran wang... you get your hacky bmp loader.
Carsten Haitzler [Thu, 10 Mar 2011 12:11:42 +0000 (12:11 +0000)]
ok - finally - biran wang... you get your hacky bmp loader.

SVN revision: 57668

13 years agoFrom: WooHyun Jung <wh0705.jung@samsung.com>
WooHyun Jung [Thu, 10 Mar 2011 10:12:32 +0000 (10:12 +0000)]
From: WooHyun Jung <wh0705.jung@samsung.com>

Fix missing clicked signal from entry.

SVN revision: 57663

13 years agoFrom: Jihoon Kim <jihoon48.kim@samsung.com>
Jihoon Kim [Thu, 10 Mar 2011 09:15:36 +0000 (09:15 +0000)]
From: Jihoon Kim <jihoon48.kim@samsung.com>
Subject: [E-devel] [PATCH] patch for describing ecore_imf APIs more
detail

This patch will supplement the documentation about
ecore_imf_context_preedit_start_event_add,
ecore_imf_context_preedit_end_event_add and
ecore_imf_context_delete_surrounding_event_add API.

SVN revision: 57659

13 years agoFrom: "Sung W. Park" <sungwoo@gmail.com>
Sung W. Park [Thu, 10 Mar 2011 08:23:39 +0000 (08:23 +0000)]
From: "Sung W. Park" <sungwoo@gmail.com>
Subject: [E-devel] Evas - OpenGL and Image Object -
evas_object_image_native_surface_set()

Fix bug with yinvert handling of native surfaces.

SVN revision: 57658

13 years agoeio: make it easy to filter content during eio_dir_* operation.
Cedric BAIL [Wed, 9 Mar 2011 16:21:11 +0000 (16:21 +0000)]
eio: make it easy to filter content during eio_dir_* operation.

SVN revision: 57631

13 years agoeio: correctly fix large file support.
Cedric BAIL [Wed, 9 Mar 2011 15:04:01 +0000 (15:04 +0000)]
eio: correctly fix large file support.

SVN revision: 57629

13 years agoeina: better fix for large file.
Cedric BAIL [Wed, 9 Mar 2011 14:59:48 +0000 (14:59 +0000)]
eina: better fix for large file.

SVN revision: 57627

13 years agoeio: fix issue on 32bits system.
Cedric BAIL [Wed, 9 Mar 2011 14:53:55 +0000 (14:53 +0000)]
eio: fix issue on 32bits system.

SVN revision: 57626

13 years agoeina: fix stat failure when size, blocks count or serial number didn't
Cedric BAIL [Wed, 9 Mar 2011 14:49:35 +0000 (14:49 +0000)]
eina: fix stat failure when size, blocks count or serial number didn't
      fit in 32bits.

SVN revision: 57624

13 years agofix -> call hide BEFORE del.
Carsten Haitzler [Wed, 9 Mar 2011 06:16:46 +0000 (06:16 +0000)]
fix -> call hide BEFORE del.

SVN revision: 57613

13 years agoand now with some testing... actually fix the swapintervals fun :)
Carsten Haitzler [Tue, 8 Mar 2011 15:56:39 +0000 (15:56 +0000)]
and now with some testing... actually fix the swapintervals fun :)

SVN revision: 57596

13 years agoi cannot believe evas has lasted this long without this. obj ref &
Carsten Haitzler [Tue, 8 Mar 2011 12:23:37 +0000 (12:23 +0000)]
i cannot believe evas has lasted this long without this. obj ref &
unref.

SVN revision: 57582

13 years agoAdd epp.
Rui Seabra [Tue, 8 Mar 2011 11:41:51 +0000 (11:41 +0000)]
Add epp.

SVN revision: 57577

13 years agoignore++
Sebastian Dransfeld [Tue, 8 Mar 2011 11:41:40 +0000 (11:41 +0000)]
ignore++

SVN revision: 57576

13 years agoEfreet: Make sure we don't reset changed
Sebastian Dransfeld [Tue, 8 Mar 2011 11:41:18 +0000 (11:41 +0000)]
Efreet: Make sure we don't reset changed

SVN revision: 57575

13 years agoEfreet: Listen for ECORE_FILE_EVENT_CLOSED
Sebastian Dransfeld [Tue, 8 Mar 2011 11:40:54 +0000 (11:40 +0000)]
Efreet: Listen for ECORE_FILE_EVENT_CLOSED

SVN revision: 57574

13 years agoFix build (from make dist files).
Rui Seabra [Tue, 8 Mar 2011 11:27:40 +0000 (11:27 +0000)]
Fix build (from make dist files).

SVN revision: 57573

13 years agoSupport WBMP loader.
Rui Seabra [Tue, 8 Mar 2011 11:27:00 +0000 (11:27 +0000)]
Support WBMP loader.

SVN revision: 57572

13 years ago2 different sync apis with differetn ext's. fix.
Carsten Haitzler [Tue, 8 Mar 2011 11:20:49 +0000 (11:20 +0000)]
2 different sync apis with differetn ext's. fix.

SVN revision: 57569

13 years ago_evas_gl_common_viewport_set segv fix: ROUND 2!
Mike Blumenkrantz [Tue, 8 Mar 2011 01:00:21 +0000 (01:00 +0000)]
_evas_gl_common_viewport_set segv fix: ROUND 2!

SVN revision: 57561

13 years agoREVERT! hell no. glu is not going to become a dependency. it never
Carsten Haitzler [Mon, 7 Mar 2011 19:11:18 +0000 (19:11 +0000)]
REVERT! hell no. glu is not going to become a dependency. it never
was. you broke gl-es support and didnt link to glu either. it's a
separate lib. no no no no no.

SVN revision: 57558

13 years agofix weird segv I found when trying opengl mode in comp module on my desktop, waiting...
Mike Blumenkrantz [Mon, 7 Mar 2011 05:41:49 +0000 (05:41 +0000)]
fix weird segv I found when trying opengl mode in comp module on my desktop, waiting for someone to give me the "good job you did it correctly" before I backport since I probably didn't

SVN revision: 57546

13 years agoEvil: some headers could define WIN32_LEAN_AND_MEAN. Prevent multiple
Vincent Torri [Thu, 3 Mar 2011 21:12:45 +0000 (21:12 +0000)]
Evil: some headers could define WIN32_LEAN_AND_MEAN. Prevent multiple
define of that macro

SVN revision: 57505

13 years agoEcore ecore_con:
Vincent Torri [Thu, 3 Mar 2011 21:05:28 +0000 (21:05 +0000)]
Ecore ecore_con:

 * include arpa/inet.h if it is detected
 * use correct types
 * small cleanup

SVN revision: 57503

13 years agoadd gitignore
Mike Blumenkrantz [Thu, 3 Mar 2011 16:41:10 +0000 (16:41 +0000)]
add gitignore

SVN revision: 57501

13 years agofix bug with removing devices not passing filter in watches, part of bug pointed...
Mike Blumenkrantz [Thu, 3 Mar 2011 16:30:45 +0000 (16:30 +0000)]
fix bug with removing devices not passing filter in watches, part of bug pointed out by Clement Battin on ML

SVN revision: 57499

13 years agofix missing ! because I'm a moron.
Mike Blumenkrantz [Thu, 3 Mar 2011 15:52:43 +0000 (15:52 +0000)]
fix missing ! because I'm a moron.
not backporting because this never gets installed anyway
no changelog update for the same reason

SVN revision: 57497

13 years agoEcore ecore.dox.in: Modified @@ to @.
Daniel Juyung Seo [Thu, 3 Mar 2011 15:49:32 +0000 (15:49 +0000)]
Ecore ecore.dox.in: Modified @@ to @.
  It looks like @ gives a 'mailto:' links automatically.
  I applied it to ecore first.

SVN revision: 57496

13 years agoEvas evas.dox.in: Fixed typo.
Daniel Juyung Seo [Tue, 1 Mar 2011 14:03:50 +0000 (14:03 +0000)]
Evas evas.dox.in: Fixed typo.

SVN revision: 57457

13 years agoecore: add @since .
Cedric BAIL [Tue, 1 Mar 2011 10:12:33 +0000 (10:12 +0000)]
ecore: add @since .

SVN revision: 57453

13 years agoecore: fix detection of complete file write in ecore_file inotify.
Cedric BAIL [Tue, 1 Mar 2011 09:57:13 +0000 (09:57 +0000)]
ecore: fix detection of complete file write in ecore_file inotify.

Patch by Guillaume Friloux <uillaume.friloux@asp64.com>.

SVN revision: 57450

13 years agoecore: add ecore_con_url_ssl_verify_peer_set patch by Raoul Hecky.
Cedric BAIL [Tue, 1 Mar 2011 09:51:51 +0000 (09:51 +0000)]
ecore: add ecore_con_url_ssl_verify_peer_set patch by Raoul Hecky.

SVN revision: 57448

13 years agoEfreet: Verify that path contains '.'
Sebastian Dransfeld [Mon, 28 Feb 2011 20:15:55 +0000 (20:15 +0000)]
Efreet: Verify that path contains '.'

Thanks Heinervdm

SVN revision: 57435

13 years agoemotion: fix DSO build.
Cedric BAIL [Mon, 28 Feb 2011 14:50:27 +0000 (14:50 +0000)]
emotion: fix DSO build.

SVN revision: 57415

13 years agoEdje: Bumped EDJE_FILE_MINOR for the previous size_range changes.
Tom Hacohen [Mon, 28 Feb 2011 13:27:15 +0000 (13:27 +0000)]
Edje: Bumped EDJE_FILE_MINOR for the previous size_range changes.

SVN revision: 57412

13 years agoedje: let's release the hand brake and run faster !
Cedric BAIL [Mon, 28 Feb 2011 13:25:46 +0000 (13:25 +0000)]
edje: let's release the hand brake and run faster !

SVN revision: 57411

13 years agoEfreet: Remove unused variables
Sebastian Dransfeld [Mon, 28 Feb 2011 10:50:37 +0000 (10:50 +0000)]
Efreet: Remove unused variables

SVN revision: 57409

13 years agoEfreet: Separate desktop dirs to add
Sebastian Dransfeld [Mon, 28 Feb 2011 10:50:27 +0000 (10:50 +0000)]
Efreet: Separate desktop dirs to add

Keep desktop dirs to add to cache process in separate list, so we can
free data after they are passed to cache process.

SVN revision: 57408

13 years agoefreet: check for subpath
Sebastian Dransfeld [Mon, 28 Feb 2011 10:50:16 +0000 (10:50 +0000)]
efreet: check for subpath

Need to check if the path we want to add is a subpath of an already
added path.

SVN revision: 57407

13 years agoEcore ecore.dox.in: Fixed type and sych with AUTHORS.
Daniel Juyung Seo [Mon, 28 Feb 2011 09:07:39 +0000 (09:07 +0000)]
Ecore ecore.dox.in: Fixed type and sych with AUTHORS.

SVN revision: 57405

13 years agoEdje text: Added size_range to limit the font size range.
Tom Hacohen [Sun, 27 Feb 2011 18:09:03 +0000 (18:09 +0000)]
Edje text: Added size_range to limit the font size range.

This lets you limit the allowed sizes of the TEXT part (font sizes) to
a specific range. This is especially useful in combination with the
"fit" property.

SVN revision: 57395

13 years agoEdje text: Fixed a bug with fit_x and cleaned everything up.
Tom Hacohen [Sun, 27 Feb 2011 18:09:00 +0000 (18:09 +0000)]
Edje text: Fixed a bug with fit_x and cleaned everything up.

There was a bug that cause bad sizing (by 1pt) when fit was set, this is
now fixed.
Furthermore, for some reason we had a loop although we already jumped
to the last value right at the start. That didn't make any sense,
so I removed that as well.

SVN revision: 57394

13 years agoavoid segv on file set (zero imge data)
Carsten Haitzler [Sun, 27 Feb 2011 16:21:39 +0000 (16:21 +0000)]
avoid segv on file set (zero imge data)

SVN revision: 57391

13 years agoremove.
Carsten Haitzler [Sun, 27 Feb 2011 14:40:54 +0000 (14:40 +0000)]
remove.

SVN revision: 57387

13 years agomake label not have nothing after it. fix err when valgrind and
Carsten Haitzler [Sun, 27 Feb 2011 11:27:02 +0000 (11:27 +0000)]
make label not have nothing after it. fix err when valgrind and
threads disabled.

SVN revision: 57373

13 years agoFrom: Jihoon Kim <jihoon48.kim@samsung.com>
Jihoon Kim [Sun, 27 Feb 2011 11:20:35 +0000 (11:20 +0000)]
From: Jihoon Kim <jihoon48.kim@samsung.com>
Subject: [E-devel] [PATCH] Add
ecore_imf_context_preedit_string_with_attributes_get API

This is patch for adding
ecore_imf_context_preedit_string_with_attributes_get API.
In ecore_imf, there is ecore_imf_context_preedit_string_get API, but the
attribute info from input method engine cannot be got from it.

After discussing rater, we decided to add new API.
Attribute infomation can be got as Eina_List type containing
Ecore_IMF_Preedit_Attr structure items.

In this patch, ECORE_IMF_PREEDIT_TYPE_SUB1,2,3 means the depth of
preedit
style.

SVN revision: 57372

13 years agoformatting
Vincent Torri [Sun, 27 Feb 2011 10:32:52 +0000 (10:32 +0000)]
formatting

SVN revision: 57368

13 years agofinal fix for the static jpeg build on Windows
Vincent Torri [Sun, 27 Feb 2011 10:31:18 +0000 (10:31 +0000)]
final fix for the static jpeg build on Windows

SVN revision: 57367

13 years agoEdje entry: Added edje_object_part_text_cursor_pos_get/set.
Tom Hacohen [Sun, 27 Feb 2011 10:25:22 +0000 (10:25 +0000)]
Edje entry: Added edje_object_part_text_cursor_pos_get/set.

This adds the ability to control the text position of an edje_entry.
Patch by Jihoon Kim.

SVN revision: 57365

13 years agowhitespaces--
Vincent Torri [Sun, 27 Feb 2011 10:04:19 +0000 (10:04 +0000)]
whitespaces--

SVN revision: 57362

13 years agoEvas jpeg saver: don't build and fix static build on Windows (jpeg saver does not...
Vincent Torri [Sun, 27 Feb 2011 10:02:59 +0000 (10:02 +0000)]
Evas jpeg saver: don't build and fix static build on Windows (jpeg saver does not compile)

SVN revision: 57361

13 years agoformatting and spell
Vincent Torri [Sun, 27 Feb 2011 09:37:14 +0000 (09:37 +0000)]
formatting and spell

SVN revision: 57359

13 years agoActually, it's important and it's a compilation failure. Users
Vincent Torri [Sun, 27 Feb 2011 09:31:00 +0000 (09:31 +0000)]
Actually, it's important and it's a compilation failure. Users
will know when it has been fixed

SVN revision: 57358

13 years agoEvas: fix static build of *bmp and tga loaders
Vincent Torri [Sun, 27 Feb 2011 09:19:24 +0000 (09:19 +0000)]
Evas: fix static build of *bmp and tga loaders

not sure it needs a changelog entry. If yes, tell.
backport to 1.0 needed for bmp and tga

SVN revision: 57356

13 years ago * configure.ac:
Vincent Torri [Sun, 27 Feb 2011 09:06:04 +0000 (09:06 +0000)]
* configure.ac:
force libtool >= 2.4

SVN revision: 57354

13 years agoupdating various translations
Massimo Maiurana [Fri, 25 Feb 2011 20:26:34 +0000 (20:26 +0000)]
updating various translations

SVN revision: 57327

13 years agoEcore_Thread: Fix yet another doxy typo.
Christopher Michael [Fri, 25 Feb 2011 18:42:44 +0000 (18:42 +0000)]
Ecore_Thread: Fix yet another doxy typo.

SVN revision: 57326

13 years agoEcore_Thread: Fix doxy typo.
Christopher Michael [Fri, 25 Feb 2011 18:41:37 +0000 (18:41 +0000)]
Ecore_Thread: Fix doxy typo.

SVN revision: 57325

13 years agoemotion: override engine by setting EMOTION_ENGINE environ.
Cedric BAIL [Fri, 25 Feb 2011 11:33:19 +0000 (11:33 +0000)]
emotion: override engine by setting EMOTION_ENGINE environ.

SVN revision: 57320

13 years agoecore: fix timeline.
Cedric BAIL [Fri, 25 Feb 2011 11:29:15 +0000 (11:29 +0000)]
ecore: fix timeline.

SVN revision: 57318

13 years agoeina: typo in doc
Boris Faure [Thu, 24 Feb 2011 21:55:00 +0000 (21:55 +0000)]
eina: typo in doc

SVN revision: 57312

13 years agoEcore ecore_evas:
Vincent Torri [Thu, 24 Feb 2011 19:37:21 +0000 (19:37 +0000)]
Ecore ecore_evas:
Fix Ecore_WinCE window type

SVN revision: 57310

13 years agofix Windows CE compilation
Vincent Torri [Thu, 24 Feb 2011 19:24:39 +0000 (19:24 +0000)]
fix Windows CE compilation

SVN revision: 57308

13 years agoupdating slovenian translation
Massimo Maiurana [Thu, 24 Feb 2011 17:28:12 +0000 (17:28 +0000)]
updating slovenian translation

SVN revision: 57305

13 years agoEvas textblock: Added a workaround for a segfault.
Tom Hacohen [Thu, 24 Feb 2011 15:18:10 +0000 (15:18 +0000)]
Evas textblock: Added a workaround for a segfault.

The problem is that we currently do try to split even if we can't.
We should overview things and fix it in a more proper way, but this is
a good enough solution in the meanwhile, because this part will be fixed
soon.

SVN revision: 57301

13 years agoedje: fix signal comming from box/table part.
Cedric BAIL [Thu, 24 Feb 2011 14:41:08 +0000 (14:41 +0000)]
edje: fix signal comming from box/table part.

Thanks to the report by Jonathan "Watchwolf" Atton.

SVN revision: 57299

13 years agoEvas textblock: Don't set style if it's the same.
Tom Hacohen [Thu, 24 Feb 2011 08:43:38 +0000 (08:43 +0000)]
Evas textblock: Don't set style if it's the same.

SVN revision: 57296

13 years agoEvas textblock: Stringshare the style text of each style.
Tom Hacohen [Thu, 24 Feb 2011 08:43:34 +0000 (08:43 +0000)]
Evas textblock: Stringshare the style text of each style.

SVN revision: 57295

13 years agoEvas textblock: Fix wrong behavior when updating style.
Tom Hacohen [Thu, 24 Feb 2011 08:43:30 +0000 (08:43 +0000)]
Evas textblock: Fix wrong behavior when updating style.

When updating style we should not clear the utf8 text but we should relayout.
And definitely not reset it.

SVN revision: 57294

13 years agoEcore ecore_file:
Vincent Torri [Thu, 24 Feb 2011 07:52:25 +0000 (07:52 +0000)]
Ecore ecore_file:
fix compilation when ecore_con and curl are not available

When ecore_con and curl are not available, a callback using them
is still compiled.

SVN revision: 57293

13 years agoEcore ecore_wince: fix compilation on Windows CE
Vincent Torri [Thu, 24 Feb 2011 07:46:43 +0000 (07:46 +0000)]
Ecore ecore_wince: fix compilation on Windows CE

SVN revision: 57291

13 years agoEina chained mempool:
Vincent Torri [Thu, 24 Feb 2011 07:05:50 +0000 (07:05 +0000)]
Eina chained mempool:
Fix a compilation failure when --disable-posix-threads
--disable-valgrind are passed to configure

When --disable-posix-threads --disable-valgrind are passed
to configure, a label is at the end of a block. Just add a
return to fix that problem.

SVN revision: 57290

13 years agore-add autopoint for gettext stuff
Vincent Torri [Wed, 23 Feb 2011 20:57:30 +0000 (20:57 +0000)]
re-add autopoint for gettext stuff

SVN revision: 57287

13 years agorevert...
Vincent Torri [Wed, 23 Feb 2011 20:56:29 +0000 (20:56 +0000)]
revert...

SVN revision: 57286

13 years agore-add autopoint for gettext stuff
Vincent Torri [Wed, 23 Feb 2011 20:40:28 +0000 (20:40 +0000)]
re-add autopoint for gettext stuff

SVN revision: 57285

13 years agoSubject: Re: [E-devel] E SVN: discomfitor trunk/edje/src/bin
Mike Blumenkrantz [Wed, 23 Feb 2011 20:30:14 +0000 (20:30 +0000)]
Subject: Re: [E-devel] E SVN: discomfitor trunk/edje/src/bin
Date: Wed, 23 Feb 2011 20:25:38 +0100 (CET)

On Wed, 23 Feb 2011, Mike Blumenkrantz wrote:
> vtorri! help!!!! :(

try the attached patch

Vincent

SVN revision: 57284

13 years ago * src/lib/evil_stdio.c:
Vincent Torri [Wed, 23 Feb 2011 19:34:27 +0000 (19:34 +0000)]
* src/lib/evil_stdio.c:
make vasprintf() compile on Windows CE
* src/lib/evil_time.c:
* src/lib/evil_time.h:
add stub tzset() for Windows CE

SVN revision: 57273

13 years agowhoops
Mike Blumenkrantz [Wed, 23 Feb 2011 19:07:13 +0000 (19:07 +0000)]
whoops

SVN revision: 57272

13 years agoEvas textblock: Remove a redundant cast.
Tom Hacohen [Wed, 23 Feb 2011 16:50:59 +0000 (16:50 +0000)]
Evas textblock: Remove a redundant cast.

SVN revision: 57268

13 years agoEvas textblock: Fix the false-positive strict-aliasing issue with gcc.
Tom Hacohen [Wed, 23 Feb 2011 16:49:31 +0000 (16:49 +0000)]
Evas textblock: Fix the false-positive strict-aliasing issue with gcc.

Only happens with some versions of gcc. I think it's a false positive
because both of the items are compatible.

SVN revision: 57267