1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-31 15:15:40 +00:00
openmw/apps/opencs/view/widget/completerpopup.hpp

18 lines
304 B
C++
Raw Normal View History

#ifndef CSV_WIDGET_COMPLETERPOPUP_HPP
#define CSV_WIDGET_COMPLETERPOPUP_HPP
#include <QListView>
namespace CSVWidget
{
class CompleterPopup : public QListView
{
2022-09-22 18:26:05 +00:00
public:
CompleterPopup(QWidget* parent = nullptr);
2022-09-22 18:26:05 +00:00
int sizeHintForRow(int row) const override;
};
}
#endif