mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 18:26:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			309 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			309 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef CSV_WIDGET_COMPLETERPOPUP_HPP
 | |
| #define CSV_WIDGET_COMPLETERPOPUP_HPP
 | |
| 
 | |
| #include <QListView>
 | |
| 
 | |
| namespace CSVWidget
 | |
| {
 | |
|     class CompleterPopup : public QListView
 | |
|     {
 | |
|         public:
 | |
|             CompleterPopup(QWidget *parent = 0);
 | |
| 
 | |
|             virtual int sizeHintForRow(int row) const;
 | |
|     };
 | |
| }
 | |
| 
 | |
| #endif
 |