mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 13:11:20 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			267 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			267 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * crightclickenabler.cpp
 | 
						|
 *
 | 
						|
 *  Created on: Mar 26, 2018
 | 
						|
 *      Author: f4exb
 | 
						|
 */
 | 
						|
 | 
						|
#include "crightclickenabler.h"
 | 
						|
 | 
						|
CRightClickEnabler::CRightClickEnabler(QAbstractButton *button): QObject(button), _button(button) {
 | 
						|
        button->installEventFilter(this);
 | 
						|
};
 | 
						|
 |