1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-10 06:39:49 +00:00
OpenMW/apps/opencs/view/widget/completerpopup.hpp

18 lines
316 B
C++
Raw Normal View History

#ifndef CSV_WIDGET_COMPLETERPOPUP_HPP
#define CSV_WIDGET_COMPLETERPOPUP_HPP
#include <QListView>
namespace CSVWidget
{
class CompleterPopup : public QListView
{
public:
2020-11-13 07:39:47 +00:00
CompleterPopup(QWidget *parent = nullptr);
int sizeHintForRow(int row) const override;
};
}
#endif