mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 18:02:44 +00:00 
			
		
		
		
	Move some more classes to the new coding style.
This commit is contained in:
		
							parent
							
								
									a2ec09bc20
								
							
						
					
					
						commit
						7750e6952b
					
				
					 20 changed files with 113 additions and 114 deletions
				
			
		|  | @ -15,10 +15,10 @@ void Rect::intersect(const Rect& other) | |||
|         return; | ||||
|     } | ||||
| 
 | ||||
|     m_location.setX(l); | ||||
|     m_location.setY(t); | ||||
|     m_size.setWidth((r - l) + 1); | ||||
|     m_size.setHeight((b - t) + 1); | ||||
|     m_location.set_x(l); | ||||
|     m_location.set_y(t); | ||||
|     m_size.set_width((r - l) + 1); | ||||
|     m_size.set_height((b - t) + 1); | ||||
| } | ||||
| 
 | ||||
| Rect Rect::united(const Rect& other) const | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Andreas Kling
						Andreas Kling