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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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
{
public:
2020-11-13 07:39:47 +00:00
CompleterPopup(QWidget* parent = nullptr);
int sizeHintForRow(int row) const override;
};
}
#endif