diff options
author | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-11-09 00:36:47 +0000 |
commit | f96441b9faf769c9ecdd4d338b605ea3d0cc4010 (patch) | |
tree | edb17ec2c4ea13c5acb1c7350957a249a820e28d /ewl | |
parent | b6588aa6851fb220cedc387d21c51513ef8d67f4 (diff) |
Disable bk EOLN_NATIVE conversions on all files in packages FILESPATHs, to prevent it screwing up patches.
BKrev: 4190111fA4MuVozAqwE7xOSL9fr-TA
Diffstat (limited to 'ewl')
-rw-r--r-- | ewl/ewl/no-x-test.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/ewl/ewl/no-x-test.patch b/ewl/ewl/no-x-test.patch index e69de29bb2..c75da4ac04 100644 --- a/ewl/ewl/no-x-test.patch +++ b/ewl/ewl/no-x-test.patch @@ -0,0 +1,32 @@ + +# +# Patch managed by http://www.holgerschurig.de/patcher.html +# + +--- ewl/test/ewl_embed_test.c~no-x-test ++++ ewl/test/ewl_embed_test.c +@@ -41,11 +41,12 @@ + + ewl_init(&argc, argv); + ecore_evas_init(); +- ++#if 0 + if (!(ee = ecore_evas_software_x11_new(NULL, 0, 0, 0, 320, 240))) { + printf("Failed to open display, exiting\n"); + exit(1); + } ++#endif + ecore_evas_title_set(ee, "EWL Embed Test App"); + ecore_evas_name_class_set(ee, "EWL TEST APP", "EWL TEST APP"); + ecore_evas_show(ee); +@@ -58,8 +59,10 @@ + evas_object_show(bg); + + embed = ewl_embed_new(); ++#if 0 + embobj = ewl_embed_evas_set(EWL_EMBED(embed), ecore_evas_get(ee), + EWL_EMBED_EVAS_WINDOW(ecore_evas_software_x11_window_get(ee))); ++#endif + ewl_embed_focus_set(EWL_EMBED(embed), TRUE); + evas_object_layer_set(embobj, 1); + evas_object_show(embobj); |