mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	Address review comments
This commit is contained in:
		
							parent
							
								
									3be7aa2cfc
								
							
						
					
					
						commit
						601fd81d5c
					
				
					 9 changed files with 58 additions and 72 deletions
				
			
		|  | @ -6,8 +6,6 @@ | |||
| 
 | ||||
| ClickableLabel::ClickableLabel(QWidget* parent, Qt::WindowFlags f) : QLabel(parent) {} | ||||
| 
 | ||||
| ClickableLabel::~ClickableLabel() {} | ||||
| 
 | ||||
| void ClickableLabel::mouseReleaseEvent(QMouseEvent* event) { | ||||
|     emit clicked(); | ||||
| } | ||||
|  |  | |||
|  | @ -6,14 +6,13 @@ | |||
| 
 | ||||
| #include <QLabel> | ||||
| #include <QWidget> | ||||
| #include <Qt> | ||||
| 
 | ||||
| class ClickableLabel : public QLabel { | ||||
|     Q_OBJECT | ||||
| 
 | ||||
| public: | ||||
|     explicit ClickableLabel(QWidget* parent = Q_NULLPTR, Qt::WindowFlags f = Qt::WindowFlags()); | ||||
|     ~ClickableLabel(); | ||||
|     explicit ClickableLabel(QWidget* parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags()); | ||||
|     ~ClickableLabel() = default; | ||||
| 
 | ||||
| signals: | ||||
|     void clicked(); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue