rimmed pushed a commit to branch master.

http://git.enlightenment.org/tools/eflete.git/commit/?id=b040d270e4cdd4e4e1f275c1ecf453807e51c93b

commit b040d270e4cdd4e4e1f275c1ecf453807e51c93b
Author: Vitalii Vorobiov <[email protected]>
Date:   Wed Nov 16 15:14:40 2016 +0200

    common_macro: use %H:%M instead of %R on time of last project save
    
    the main reason is because %R is newly added thingie introduced by C99
    
    Fixes T4845
---
 src/bin/common/common_macro.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/common/common_macro.h b/src/bin/common/common_macro.h
index 458b70f..aa6eca1 100644
--- a/src/bin/common/common_macro.h
+++ b/src/bin/common/common_macro.h
@@ -79,7 +79,7 @@ if (!(CALL)) \
 { \
    char date[100]; \
    long long tm = ecore_file_mod_time(ap.project->dev); \
-   strftime(date, 100, _("Last saved: %d %b %Y %R"), localtime((const time_t 
*)&tm)); \
+   strftime(date, 100, _("Last saved: %d %b %Y %H:%M"), localtime((const 
time_t *)&tm)); \
    elm_layout_text_set(ap.win_layout, "eflete.project.time", date); \
 }
 

-- 


Reply via email to