Fix two warnings + some documentation in comment

This commit is contained in:
eelke 2018-08-26 07:08:44 +02:00
parent 68a1a8e7c9
commit 49f009bdf9
2 changed files with 8 additions and 2 deletions

View file

@ -3,6 +3,12 @@
#include <QStyledItemDelegate>
/** Delegate for rendering SQL data types in tableviews
*
* This delegate removes the need for the model to provide formatting information
* which in many cases solely based on the datatype so this delegate can determine
* on its own what the correct formatting is.
*/
class PgLabItemDelegate : public QStyledItemDelegate
{
public: