ok - turn off visibility stuff for e -0 for some reason just the dropshadow


			
			
				devs/princeamd/enlightenment-0.17-elive
			
			
		
Carsten Haitzler 17 years ago
parent 28cc14919c
commit ebf9cca1ed
  1. 28
      src/bin/e.h
  2. 1
      src/bin/e_alert.c
  3. 2
      src/bin/e_apps.c
  4. 1
      src/bin/e_hints.c
  5. 3
      src/bin/e_imc_main.c
  6. 1
      src/bin/e_int_menus.c
  7. 1
      src/bin/e_intl.c
  8. 3
      src/bin/e_intl.h
  9. 1
      src/bin/e_main.c
  10. 5
      src/bin/e_module.c
  11. 4
      src/bin/e_object.c
  12. 1
      src/bin/e_prefix.c
  13. 1
      src/bin/e_signals.c
  14. 1
      src/bin/e_zone.c

@ -4,6 +4,7 @@
#ifndef E_H
#define E_H
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
@ -23,6 +24,23 @@
#include <pwd.h>
#include <grp.h>
#include <glob.h>
#include <locale.h>
#include <libintl.h>
#include <errno.h>
#ifdef HAVE_ALLOCA_H
#include <alloca.h>
#endif
#ifdef HAVE_VALGRIND
# include <memcheck.h>
#endif
#ifdef OBJECT_PARANOIA_CHECK
#include <execinfo.h>
#include <signal.h>
#include <setjmp.h>
#endif
#include <Evas.h>
#include <Evas_Engine_Buffer.h>
@ -40,14 +58,6 @@
#include <Eet.h>
#include <Edje.h>
#ifdef USE_E_CONFIG_H
#include "config.h"
#endif
#ifdef HAVE_ALLOCA_H
#include <alloca.h>
#endif
#if HAVE___ATTRIBUTE__
#define __UNUSED__ __attribute__((unused))
#else
@ -66,7 +76,7 @@
#else
# ifdef __GNUC__
# if __GNUC__ >= 4
# pragma GCC visibility push(hidden)
/*# pragma GCC visibility push(hidden)*/
# define EAPI __attribute__ ((visibility("default")))
# else
# define EAPI

@ -2,6 +2,7 @@
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#include "e_alert.h"
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>

@ -2,7 +2,7 @@
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#include "e.h"
#include <errno.h>
/* TODO List:
*
* - We assume only .eap files in 'all', no subdirs

@ -2,7 +2,6 @@
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#include "e.h"
#include "config.h"
EAPI void
e_hints_init(void)

@ -2,9 +2,8 @@
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#include "e.h"
#include <errno.h>
extern int errno;
//extern int errno;
static void _e_help(void);
/* externally accessible functions */

@ -2,7 +2,6 @@
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#include "e.h"
#include "config.h"
typedef struct _Main_Data Main_Data;

@ -2,7 +2,6 @@
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#include "e.h"
#include "config.h"
/* TODO List:
*

@ -3,9 +3,6 @@
*/
#ifdef E_TYPEDEFS
#include <locale.h>
#include <libintl.h>
#define _(str) gettext(str)
#define d_(str, dom) dgettext(PACKAGE dom, str)

@ -2,7 +2,6 @@
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#include "e.h"
#include "config.h"
/* local subsystem functions */
static void _e_main_shutdown_push(int (*func)(void));

@ -2,11 +2,6 @@
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#include "e.h"
#include "config.h"
#ifdef HAVE_VALGRIND
# include <memcheck.h>
#endif
/* TODO List:
*

@ -17,10 +17,6 @@
/* yes - i know. glibc specific... but i like being able to do my own */
/* backtraces! NB: you need CFLAGS="-rdynamic -g" LDFLAGS="-rdynamic -g" */
#ifdef OBJECT_PARANOIA_CHECK
#include <execinfo.h>
#include <stdio.h>
#include <signal.h>
#include <setjmp.h>
/* local subsystem functions */
static void _e_object_segv(int sig);

@ -2,7 +2,6 @@
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#include "e.h"
#include "config.h"
/* local subsystem functions */
static int _e_prefix_fallbacks(void);

@ -7,7 +7,6 @@
#include "e.h"
#ifdef OBJECT_PARANOIA_CHECK
#include <execinfo.h>
/* a tricky little devil, requires e and it's libs to be built
* with the -rdynamic flag to GCC for any sort of decent output.

@ -2,7 +2,6 @@
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#include "e.h"
#include "config.h"
/* E_Zone is a child object of E_Container. There is one zone per screen
* in a xinerama setup. Each zone has one or more desktops.

Loading…
Cancel
Save