diff src/ui/mfw/mfw_icn.c @ 188:92abb46dc1ba

src/ui/mfw/*.[ch]: rm trailing white space
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 19 Jan 2021 06:10:27 +0000
parents 67bfe9f274f6
children
line wrap: on
line diff
--- a/src/ui/mfw/mfw_icn.c	Tue Jan 19 05:41:26 2021 +0000
+++ b/src/ui/mfw/mfw_icn.c	Tue Jan 19 06:10:27 2021 +0000
@@ -15,31 +15,31 @@
    TO DO   :
 
    $History:: mfw_icn.c                                             $
- * 
+ *
  * *****************  Version 6  *****************
  * User: Es           Date: 23.03.00   Time: 14:41
  * Updated in $/GSM/Condat/MS/SRC/MFW
  * Added icnUnhide(); removed 'update()' from 'hide()' and 'unhide()'
-| 
+|
 | *****************  Version 5  *****************
 | User: Le           Date: 6.01.00    Time: 9:23
 | Updated in $/GSM/Condat/MS/SRC/MFW
 | Alignment of MFW versions
- * 
+ *
  * *****************  Version 4  *****************
  * User: Rm           Date: 12/03/99   Time: 10:15a
  * Updated in $/GSM/Condat/SND-MMI/MFW
  * new  parameter by icnCycle
- * 
+ *
  * *****************  Version 3  *****************
  * User: Es           Date: 24.11.99   Time: 11:54
  * Updated in $/GSM/Condat/SND-MMI/MFW
  * improved 'icnHide()' (really hides the icon now).
- * 
+ *
  * *****************  Version 2  *****************
  * User: Es           Date: 22.11.99   Time: 10:29
  * Updated in $/GSM/Condat/SND-MMI/MFW
- * 
+ *
  * *****************  Version 1  *****************
  * User: Es           Date: 18.11.99   Time: 16:35
  * Created in $/GSM/Condat/SND-MMI/MFW
@@ -107,18 +107,18 @@
     MfwHdr *hdr = (MfwHdr *) mfwAlloc(sizeof(MfwHdr));
     MfwIcn *icn = (MfwIcn *) mfwAlloc(sizeof(MfwIcn));
 	MfwHdr *insert_status =0;
-	
+
     if (!hdr || !icn)
 	{
     	TRACE_ERROR("ERROR: icnCreate() Mem Alloc Failed.");
-			
+
 	   	if(hdr)
    			mfwFree((U8*)hdr,sizeof(MfwHdr));
    		if(icn)
-   			mfwFree((U8*)icn,sizeof(MfwIcn));	
+   			mfwFree((U8*)icn,sizeof(MfwIcn));
 	   	return 0;
   	}
-    
+
     icn->mask = e;
     icn->flags = 0;
     icn->handler = f;
@@ -129,7 +129,7 @@
     hdr->type = MfwTypIcn;
 
     insert_status = mfwInsert(w, hdr);
-    
+
   	if(!insert_status)
 	{
   		TRACE_ERROR("ERROR: icnCreate() Failed to Install Handler. ");