ajwillia-ms pushed a commit to branch master.

http://git.enlightenment.org/tools/edi.git/commit/?id=7cc03ec58d35f760ceadafcd34dbc1512e12ba4d

commit 7cc03ec58d35f760ceadafcd34dbc1512e12ba4d
Author: Andy Williams <a...@andywilliams.me>
Date:   Sun Jun 7 23:12:31 2015 +0100

    remove tabs from indent
---
 src/bin/mainview/edi_mainview.c | 16 ++++++++--------
 src/bin/screens/edi_welcome.c   |  7 +++----
 2 files changed, 11 insertions(+), 12 deletions(-)

diff --git a/src/bin/mainview/edi_mainview.c b/src/bin/mainview/edi_mainview.c
index 3a98651..6551164 100644
--- a/src/bin/mainview/edi_mainview.c
+++ b/src/bin/mainview/edi_mainview.c
@@ -60,10 +60,10 @@ edi_mainview_item_prev()
    EINA_LIST_FOREACH(_edi_mainview_items, item, it)
      {
         if (first->view == current)
-         {
-            prev = eina_list_nth(_edi_mainview_items, 
eina_list_count(_edi_mainview_items)-1);
-            edi_mainview_item_select(prev);
-         }
+          {
+             prev = eina_list_nth(_edi_mainview_items, 
eina_list_count(_edi_mainview_items)-1);
+             edi_mainview_item_select(prev);
+          }
         if (it && it->view == current)
           {
              if (prev)
@@ -89,10 +89,10 @@ edi_mainview_item_next()
    EINA_LIST_FOREACH(_edi_mainview_items, item, it)
      {
         if (last->view == current)
-         {
-            next = eina_list_nth(_edi_mainview_items, 0);
-            edi_mainview_item_select(next);
-         }
+          {
+             next = eina_list_nth(_edi_mainview_items, 0);
+             edi_mainview_item_select(next);
+          }
         if (it && open_next)
           {
              edi_mainview_item_select(it);
diff --git a/src/bin/screens/edi_welcome.c b/src/bin/screens/edi_welcome.c
index 8a5664c..b0ad461 100644
--- a/src/bin/screens/edi_welcome.c
+++ b/src/bin/screens/edi_welcome.c
@@ -55,14 +55,13 @@ _edi_message_open(const char *message, Eina_Bool deletable)
 
    popup = elm_popup_add(_welcome_window);
    _edi_new_popup = popup;
-   elm_object_part_text_set(popup, "title,text",
-                           message);
+   elm_object_part_text_set(popup, "title,text", message);
 
    button = elm_button_add(popup);
    elm_object_text_set(button, "Ok");
    elm_object_part_content_set(popup, "button1", button);
    evas_object_smart_callback_add(button, "clicked",
-                                 _edi_on_close_message, NULL);
+                                  _edi_on_close_message, NULL);
 
    if (deletable)
      {
@@ -70,7 +69,7 @@ _edi_message_open(const char *message, Eina_Bool deletable)
         elm_object_text_set(button, "Delete");
         elm_object_part_content_set(popup, "button2", button);
         evas_object_smart_callback_add(button, "clicked",
-                                 _edi_on_delete_message, NULL);
+                                       _edi_on_delete_message, NULL);
      }
 
    evas_object_show(popup);

-- 


Reply via email to