drivers bugfix different parameter name decl./def.

This commit is contained in:
silverqx
2024-07-21 20:03:33 +02:00
parent c5e9b86459
commit 3d599fc501

View File

@@ -85,9 +85,9 @@ namespace Orm::Drivers
/*! Get the table name a field belongs to. */
inline QString tableName() const noexcept;
/*! Set the table name for the current field. */
inline void setTableName(const QString &tableName) noexcept;
inline void setTableName(const QString &table) noexcept;
/*! Set the table name for the current field. */
inline void setTableName(QString &&tableName) noexcept;
inline void setTableName(QString &&table) noexcept;
/*! Get the field default value. */
inline QVariant defaultValue() const;