From: Seunghyun Choi Date: Fri, 27 Oct 2017 01:27:48 +0000 (+0900) Subject: [ElmSharp] fixed typo in in Elementary X-Git-Tag: 5.0.0-preview1-00362^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F11%2F157911%2F6;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [ElmSharp] fixed typo in in Elementary Change-Id: I02bf9b982381524a6f908b97122d000c8cb8dd5c --- diff --git a/src/ElmSharp/ElmSharp/Elementary.cs b/src/ElmSharp/ElmSharp/Elementary.cs old mode 100755 new mode 100644 index ef66745..35c7343 --- a/src/ElmSharp/ElmSharp/Elementary.cs +++ b/src/ElmSharp/ElmSharp/Elementary.cs @@ -339,11 +339,21 @@ namespace ElmSharp } /// + /// Use FlushAllCache instead. + /// + [Obsolete("use FlushAllCache instead")] + [EditorBrowsable(EditorBrowsableState.Never)] + public static void FlushAllCashe() + { + Interop.Elementary.elm_cache_all_flush(); + } + + /// /// Flush all caches. /// Frees all data that was in cache and is not currently being used to reduce memory usage. This frees Edje's, Evas' and Eet's cache. /// /// preview - public static void FlushAllCashe() + public static void FlushAllCache() { Interop.Elementary.elm_cache_all_flush(); } @@ -389,4 +399,4 @@ namespace ElmSharp Interop.Elementary.elm_config_all_flush(); } } -} +} \ No newline at end of file