This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository efm2.

View the commit online.

commit 80d9c1fb0273497f71f8409314990ce6755f33e9
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
AuthorDate: Tue Sep 12 22:37:33 2023 +0100

    move focus dir enum inside where it should be
---
 src/efm/efm.c | 9 +++++++++
 src/efm/efm.h | 9 ---------
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/efm/efm.c b/src/efm/efm.c
index 583db25..93b7558 100644
--- a/src/efm/efm.c
+++ b/src/efm/efm.c
@@ -20,6 +20,15 @@
 
 #define INVALID -999999
 
+typedef enum {
+   EFM_FOCUS_DIR_UP,
+   EFM_FOCUS_DIR_DOWN,
+   EFM_FOCUS_DIR_LEFT,
+   EFM_FOCUS_DIR_RIGHT,
+   EFM_FOCUS_DIR_PGDN,
+   EFM_FOCUS_DIR_PGUP
+} Efm_Focus_Dir;
+
 #include "efm_structs.h"
 
 int _log_dom = -1;
diff --git a/src/efm/efm.h b/src/efm/efm.h
index 3dc1789..fe8d135 100644
--- a/src/efm/efm.h
+++ b/src/efm/efm.h
@@ -30,15 +30,6 @@ typedef enum {
    EFM_SORT_MODE_PERMISSIONS    = ( 6 <<  0),
 } Efm_Sort_Mode;
 
-typedef enum {
-   EFM_FOCUS_DIR_UP,
-   EFM_FOCUS_DIR_DOWN,
-   EFM_FOCUS_DIR_LEFT,
-   EFM_FOCUS_DIR_RIGHT,
-   EFM_FOCUS_DIR_PGDN,
-   EFM_FOCUS_DIR_PGUP
-} Efm_Focus_Dir;
-
 Evas_Object  *efm_add               (Evas_Object *parent);
 void          efm_scroller_set      (Evas_Object *obj, Evas_Object *scroller);
 Evas_Object  *efm_scroller_get      (Evas_Object *obj);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to