diff src/ui/bmi/mmiUserData.c @ 92:c0052fe355d3

src/ui/bmi/*.[ch]: rm trailing white space
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 08 Nov 2020 06:39:16 +0000
parents 67bfe9f274f6
children 8f6e2ae69a6b
line wrap: on
line diff
--- a/src/ui/bmi/mmiUserData.c	Sun Nov 08 05:12:05 2020 +0000
+++ b/src/ui/bmi/mmiUserData.c	Sun Nov 08 06:39:16 2020 +0000
@@ -2,34 +2,34 @@
 
 					CONDAT (UK)
 
-********************************************************************************                                                                              
+********************************************************************************
 
  This software product is the property of Condat (UK) Ltd and may not be
- disclosed to any third party without the express permission of the owner.                                 
-                                                                              
+ disclosed to any third party without the express permission of the owner.
+
 ********************************************************************************
 
- $Project name:	Basic MMI                                                      
- $Project code:	BMI (6349)                                                           
+ $Project name:	Basic MMI
+ $Project code:	BMI (6349)
  $Module:		MMI
  $File:		    MmiUserData.c
- $Revision:		1.0                                                       
-                                                                              
- $Author:		Condat(UK)                                                         
- $Date:		    22/02/01                                                      
-                                                                               
+ $Revision:		1.0
+
+ $Author:		Condat(UK)
+ $Date:		    22/02/01
+
 ********************************************************************************
-                                                                              
+
  Description:
 
-  
+
 
 ********************************************************************************
 
  $History: MmiUserData.c
 
-	25/10/00			Original Condat(UK) BMI version.	
-	   
+	25/10/00			Original Condat(UK) BMI version.
+
  $End
 
 *******************************************************************************/
@@ -113,7 +113,7 @@
 void *userDataHndSet( MfwHnd window, UserKey key, void *data)
 {
 	if( window == NULL ) { return NULL; }
-	
+
 	return userDataWinSet( (MfwWin *)((MfwHdr *)window)->data, key, data);
 }
 
@@ -162,7 +162,7 @@
 void *userDataHndGet( MfwHnd window, UserKey key)
 {
 	if( window == NULL ) { return NULL; }
-	
+
 	return userDataWinGet( (MfwWin *)((MfwHdr *)window)->data, key);
 }
 
@@ -170,13 +170,13 @@
 void *userDataWinGet( MfwWin *window, UserKey key)
 {
     UserDataLink thisOne;
-	
+
 	if( window == NULL ) { return NULL; }
 
     thisOne = userDataFind( (UserDataLink)window->user, key);
-	
+
 	if( thisOne == NULL ) { return NULL; }
-	
+
 	return thisOne->data;
 }
 
@@ -190,7 +190,7 @@
 void *userDataHndDelete( MfwHnd window, UserKey key)
 {
 	if( window == NULL ) { return NULL; }
-	
+
 	return userDataWinDelete( (MfwWin *)((MfwHdr *)window)->data, key);
 }