mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-30 21:01:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			246 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			246 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include <LibGUI/GMenuItem.h>
 | |
| #include <LibGUI/GAction.h>
 | |
| 
 | |
| GMenuItem::GMenuItem(Type type)
 | |
|     : m_type(type)
 | |
| {
 | |
| }
 | |
| 
 | |
| GMenuItem::GMenuItem(OwnPtr<GAction>&& action)
 | |
|     : m_type(Action)
 | |
|     , m_action(move(action))
 | |
| {
 | |
| }
 | |
| 
 | |
| GMenuItem::~GMenuItem()
 | |
| {
 | |
| }
 | |
| 
 | 
